-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adds dataset level * Update pyproject.toml * Update pyproject.toml * Update test_common.py * Update test_common.py * Update test_common.py * Update test_common.py * Update test_common.py * Update test_common.py * Update common.py --------- Co-authored-by: ArthurKordes <ArthurKordes> Co-authored-by: Bas <[email protected]>
- Loading branch information
1 parent
158fe1a
commit 2ccdc7d
Showing
8 changed files
with
226 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "dq-suite-amsterdam" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = [ | ||
{ name="Arthur Kordes", email="[email protected]" }, | ||
{ name="Aysegul Cayir Aydar", email="[email protected]" }, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from pyspark.sql.types import StructType | ||
|
||
SCHEMA = ( | ||
StructType().add("bronDatasetId", "string").add("medaillonLaag", "string") | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
from pyspark.sql.types import StructType | ||
|
||
SCHEMA = ( | ||
StructType().add("bronTabelId", "string").add("uniekeSleutel", "string") | ||
) | ||
StructType() | ||
.add("bronTabelId", "string") | ||
.add("tabelNaam", "string") | ||
.add("uniekeSleutel", "string") | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.