-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
fix: update/delete should not fail when table has multi-column primar…
…y key (#32)
Showing
5 changed files
with
169 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
id1,id2,text,_fivetran_deleted,_fivetran_synced | ||
1,100,"does not matter",true,"2024-01-09T04:23:41.165531936Z" | ||
3,300,"this value does not matter, and neither does _fivetran_deleted -- the row will still be hard deleted because it's in this file",false,"2024-01-09T04:23:41.165531936Z" |
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,3 @@ | ||
id1,id2,text,_fivetran_deleted,_fivetran_synced | ||
2,200,"second row updated",false,"2024-02-09T00:00:00.000000000Z" | ||
3,300,"third row soft deleted - but also this value updated",true,"2024-02-09T00:00:00.000000000Z" |
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,4 @@ | ||
id1,id2,text,_fivetran_deleted,_fivetran_synced | ||
1,100,"first row",false,"2024-01-09T04:10:19.156057706Z" | ||
2,200,"second row",false,"2024-01-09T04:10:19.156057706Z" | ||
3,300,"third row",false,"2024-01-09T04:10:19.156057706Z" |
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