Skip to content

Commit

Permalink
update IT testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
stephaniewang526 committed Aug 28, 2020
1 parent ae5d445 commit 0576e88
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1452,7 +1452,7 @@ public void testPositionalQueryParameters() throws InterruptedException {
+ " AND IntegerField < ?"
+ " AND FloatField > ?"
+ " AND NumericField < ?"
+ " AND BigNumericField > ?";
+ " AND BigNumericField = ?";
QueryParameterValue stringParameter = QueryParameterValue.string("stringValue");
QueryParameterValue timestampParameter =
QueryParameterValue.timestamp("2014-01-01 07:00:00.000000+00:00");
Expand All @@ -1465,7 +1465,7 @@ public void testPositionalQueryParameters() throws InterruptedException {
QueryParameterValue bigNumericParameter =
QueryParameterValue.bigNumeric(
new BigDecimal(
"99999999999999999999999999999999999999.99999999999999999999999999999999999999"));
"0.33333333333333333333333333333333333333"));
QueryJobConfiguration config =
QueryJobConfiguration.newBuilder(query)
.setDefaultDataset(DatasetId.of(DATASET))
Expand Down

0 comments on commit 0576e88

Please sign in to comment.