Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
edgao authored and gisripa committed Mar 1, 2024
1 parent f85afb2 commit 7c68992
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -450,8 +450,7 @@ private TyperDeduper buildTyperDeduper(final BigQuerySqlGenerator sqlGenerator,
final BigQueryV2TableMigrator v2RawTableMigrator = new BigQueryV2TableMigrator(bigquery);
final BigQueryDestinationHandler destinationHandler = new BigQueryDestinationHandler(
bigquery,
datasetLocation
);
datasetLocation);

if (disableTypeDedupe) {
return new NoOpTyperDeduperWithV1V2Migrations<>(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -430,15 +430,16 @@ public void noCrashOnSpecialCharacters(final String specialChars) throws Excepti
}

/**
* Bigquery doesn't handle frequent INSERT/DELETE statements on a single table very well.
* So we don't have real state handling. Disable this test.
* Bigquery doesn't handle frequent INSERT/DELETE statements on a single table very well. So we
* don't have real state handling. Disable this test.
*/
@Override
@Disabled
@Test
public void testStateHandling() throws Exception {
super.testStateHandling();
}

/**
* TableResult contains records in a somewhat nonintuitive format (and it avoids loading them all
* into memory). That's annoying for us since we're working with small test data, so just pull
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* Copyright (c) 2023 Airbyte, Inc., all rights reserved.
*/

package io.airbyte.integrations.destination.bigquery.typing_deduping;

import static org.junit.jupiter.api.Assertions.assertEquals;
Expand Down

0 comments on commit 7c68992

Please sign in to comment.