-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cast as int bug #140
Merged
Merged
cast as int bug #140
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
2ced1bd
cast as bigint
fivetran-reneeli 4ff078a
version
fivetran-reneeli 942f6fb
update integration tests
fivetran-reneeli a56b239
data types
fivetran-reneeli d914af4
forgot column type label
fivetran-reneeli e6d74a1
cast as string JUST contact merge ids
fivetran-reneeli 93bf2cd
try
fivetran-reneeli 9871671
changelog
fivetran-reneeli 9dad07e
new schema
fivetran-reneeli d99f759
try new schema for databricks
fivetran-reneeli 1128a8a
try by removing the dbt compile in run script
fivetran-reneeli d32fefb
limit databricks adapter version and add package lock to gitignore
fivetran-reneeli 65977e4
databricks adapter version
fivetran-reneeli 9bfd04b
try new schema
fivetran-reneeli 5c50c50
that didnt work
fivetran-reneeli 6f5481a
test/jm-databricks-version-change
fivetran-joemarkiewicz c443197
change schema
fivetran-joemarkiewicz d15a750
add back dbt compile to run script
fivetran-reneeli 029de2d
revert irrelevant seed data changes
fivetran-reneeli 3f988f6
Update CHANGELOG.md
fivetran-reneeli 0c06f96
changelog updates
fivetran-reneeli a0c7d6f
docs and comment out the enabled vars in the config to allow default
fivetran-reneeli e7826d1
changelog update
fivetran-reneeli f06b65e
changelog
fivetran-reneeli File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
|
||
target/ | ||
dbt_modules/ | ||
logs/ | ||
|
||
dbt_packages/ | ||
env/ | ||
dbt_packages/ | ||
.DS_Store | ||
package-lock.yml |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,4 +4,5 @@ dbt_modules/ | |
logs/ | ||
.DS_Store | ||
dbt_packages/ | ||
env/ | ||
env/ | ||
package-lock.yml |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
canonical_vid,contact_id,vid_to_merge,_fivetran_synced,entity_id,first_name,last_name,num_properties_moved,timestamp,user_id | ||
5555,5555,11111,2020-12-30 11:20:31,json,,,2,2019-10-08 15:50:57, | ||
5555,5555,2147483648,2020-12-30 11:20:31,json,,,2,2019-10-08 15:50:57, | ||
4444,4444,7777,2021-01-09 11:16:00,json,,,2,2019-09-03 15:39:29, | ||
3333,3333,8888,2020-12-29 11:16:02,json,,,2,2019-11-20 20:17:59, | ||
2222,2222,9999,2020-12-30 11:16:58,json,,,2,2019-12-10 18:14:34, |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These should be commented back in to properly test during integration tests
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@fivetran-joemarkiewicz I just had these enabled to generate docs, but commented out otherwise since I assumed they weren't needed for tests as they're explicitly configured in the run script?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it, I was wondering why they were not commented out previously. This looks good then, thanks!