ZijieSong946 commented on a change in pull request #12174: URL: https://github.com/apache/beam/pull/12174#discussion_r454079645
########## File path: sdks/java/extensions/sql/zetasql/src/test/java/org/apache/beam/sdk/extensions/sql/zetasql/TestInput.java ########## @@ -258,6 +259,14 @@ .addRows(LocalTime.of(15, 30, 0), "s") .addRows(LocalTime.of(23, 35, 59), "s"); + private static final Schema TABLE_WTH_NUMERIC_SCHEMA = + Schema.builder().addDecimalField("numeric_field").addStringField("str_field").build(); + public static final TestBoundedTable TABLE_WITH_NUMERIC = + TestBoundedTable.of(TABLE_WTH_NUMERIC_SCHEMA) + .addRows(new BigDecimal("123.4567").setScale(9), "str1") Review comment: Seems a great idea. Done. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org