-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Destination bigquery: Implement refreshes logic #38713
Conversation
The latest updates on your projects. Learn more about Vercel for Git βοΈ
|
This stack of pull requests is managed by Graphite. Learn more about stacking. |
a99921b
to
1b8885a
Compare
ee71a58
to
9b7b756
Compare
1b8885a
to
0a559fa
Compare
a8e4fb3
to
af13ed8
Compare
0a559fa
to
84952f4
Compare
c07d187
to
7187741
Compare
84952f4
to
9e777b6
Compare
7187741
to
51ced08
Compare
9e777b6
to
0c713f4
Compare
51ced08
to
71966ff
Compare
0c713f4
to
2f82eef
Compare
71966ff
to
656afed
Compare
2f82eef
to
23ca526
Compare
656afed
to
d8eab42
Compare
23ca526
to
d7fd028
Compare
d8eab42
to
871ba24
Compare
d7fd028
to
4653aff
Compare
27824ee
to
073c90b
Compare
66838d0
to
3e6f038
Compare
if (suffix == "") { | ||
throw IllegalArgumentException("Cannot overwrite raw table with empty suffix") | ||
} | ||
bigquery.delete(tableId(streamId, "")) |
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.
does it have to be a no-op when table doesn't exist semantics ? if i remove IF EXISTS in snowflake, truncateRefresh tests fail. as-in this is called when actual table doesn't exist too ?
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.
ah, yeah there's no if rawTableExists
check anywhere. We could add that, but I think it's easier to just do if not exists
?
(I'll update the javadoc to clarify that that's a requirement)
3e6f038
to
d603b35
Compare
073c90b
to
75282b3
Compare
d603b35
to
9178356
Compare
75282b3
to
388bd89
Compare
9178356
to
19237b7
Compare
388bd89
to
1c513d2
Compare
1c513d2
to
78ce5ef
Compare
78ce5ef
to
c446d57
Compare
19237b7
to
c7720b1
Compare
c7720b1
to
19024dd
Compare
c446d57
to
8ee43e3
Compare
dac51cc
to
c14b2a8
Compare
8ee43e3
to
bfb472d
Compare
What
How
Review guide
User Impact
Can this PR be safely reverted and rolled back?