Skip to content

Commit

Permalink
Enable test for partitioned table in BigQuery
Browse files Browse the repository at this point in the history
These tests were disabled because we didn't want to run tests due
to lack of CI environment.
  • Loading branch information
ebyhr authored and hashhar committed Mar 8, 2022
1 parent 7a96ffc commit 8a1c4d7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ protected boolean isColumnNameRejected(Exception exception, String columnName, b
return nullToEmpty(exception.getMessage()).matches(".*(Fields must contain only letters, numbers, and underscores, start with a letter or underscore, and be at most 300 characters long).*");
}

@Test(enabled = false)
@Test
public void testSelectFromHourlyPartitionedTable()
{
try (TestTable table = new TestTable(
Expand All @@ -343,7 +343,7 @@ public void testSelectFromHourlyPartitionedTable()
}
}

@Test(enabled = false)
@Test
public void testSelectFromYearlyPartitionedTable()
{
try (TestTable table = new TestTable(
Expand Down

0 comments on commit 8a1c4d7

Please sign in to comment.