We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa9b1f6 commit a7a1874Copy full SHA for a7a1874
1 file changed
java-bigquery-jdbc/src/test/java/com/google/cloud/bigquery/jdbc/BigQueryStatementTest.java
@@ -774,6 +774,9 @@ public void testPreparedStatementExecuteWithLargeResults() throws Exception {
774
assertThat(capturedConfig.getDestinationTable())
775
.isEqualTo(TableId.of("test_dataset", "test_table"));
776
assertThat(capturedConfig.allowLargeResults()).isTrue();
777
+ }
778
+
779
+ @Test
780
public void testSetFetchSizeNegativeThrows() {
781
org.junit.jupiter.api.Assertions.assertThrows(
782
SQLException.class, () -> bigQueryStatement.setFetchSize(-1));
0 commit comments