-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dagster-embedded-elt] Fix Updated At parameter's incorrect type (#17362
) Fixes an issue where the incorrect type was set for the `updated_at` parameter. Fixes #17348
- Loading branch information
1 parent
adb6d66
commit cba181b
Showing
5 changed files
with
162 additions
and
90 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
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
8 changes: 4 additions & 4 deletions
8
python_modules/libraries/dagster-embedded-elt/dagster_embedded_elt_tests/test.csv
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,4 +1,4 @@ | ||
SPECIES_CODE,SPECIES_NAME | ||
abcdef,scrubjay | ||
defghi,bluejay | ||
jklnop,blackbird | ||
SPECIES_CODE,SPECIES_NAME,UPDATED_AT | ||
abcdef,scrubjay,1 | ||
defghi,bluejay,2 | ||
jklnop,blackbird,2 |
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