lgbo-ustc commented on code in PR #10049:
URL: 
https://github.com/apache/incubator-gluten/pull/10049#discussion_r2163370374


##########
gluten-flink/ut/src/test/java/org/apache/gluten/table/runtime/stream/custom/ScanTest.java:
##########
@@ -187,4 +188,14 @@ void testDateScan() {
     String query = "select a, b from dateTbl where a > 0";
     runAndCheck(query, Arrays.asList("+I[1, 2023-01-01]", "+I[2, 
2023-01-02]"));
   }
+
+  @Test
+  void testDecimal() {
+    List<Row> rows =
+        Arrays.asList(
+            Row.of(1, new BigDecimal("1.23")), Row.of(2, null), Row.of(3, new 
BigDecimal("7.89")));
+    createSimpleBoundedValuesTable("decimalTbl", "a int, b decimal(5, 2)", 
rows);
+    String query = "select a, b from decimalTbl where a > 0";

Review Comment:
   This will be put in another PR



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to