Skip to content
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 snowflake: fix check #34528

Merged
merged 3 commits into from
Jan 25, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,9 @@ public void insertRecordsInternal(final JdbcDatabase database,
@Override
protected void insertRecordsInternalV2(final JdbcDatabase jdbcDatabase, final List<PartialAirbyteMessage> list, final String s, final String s1)
throws Exception {
// Snowflake doesn't have standard inserts... so we probably never want to do this
throw new UnsupportedOperationException("Snowflake does not use the native JDBC DV2 interface");
// Snowflake doesn't have standard inserts... so we don't do this at real runtime.
// Intentionally do nothing. This method is called from the `check` method.
// It probably shouldn't be, but this is the easiest path to getting this working.
}

protected String generateFilesList(final List<String> files) {
Expand Down
Loading