Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
stephaniewang526 committed Jul 10, 2020
1 parent 67e30a9 commit 4148f5b
Showing 1 changed file with 0 additions and 12 deletions.
Expand Up @@ -1579,18 +1579,6 @@ public void testFastDDLQuery() throws InterruptedException {
}
}

@Test
public void testBadSQLQuery() throws InterruptedException {
String query = "SELECT &*$$%Q#^^&W%&ETY FROM " + TABLE_ID.getTable();
QueryJobConfiguration config =
QueryJobConfiguration.newBuilder(query).setDefaultDataset(DatasetId.of(DATASET)).build();
TableResult result = bigquery.query(config);
assertEquals(QUERY_RESULT_SCHEMA, result.getSchema());
assertNull(result.getNextPage());
assertNull(result.getNextPageToken());
assertFalse(result.hasNextPage());
}

@Test
public void testScriptStatistics() throws InterruptedException {
String script =
Expand Down

0 comments on commit 4148f5b

Please sign in to comment.