Skip to content

Commit

Permalink
Fix test failure in DefaultSparkSqlFunctionResponseHandleTest
Browse files Browse the repository at this point in the history
Signed-off-by: Tomoyuki Morita <[email protected]>
  • Loading branch information
ykmr1224 committed May 1, 2024
1 parent ed140e9 commit 224c61d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void testConstruct() throws Exception {
assertEquals(new ExprByteValue(5), row.get("col5"));
assertEquals(new ExprDoubleValue(6.1), row.get("col6"));
assertEquals(new ExprFloatValue(7.1), row.get("col7"));
assertEquals(new ExprTimestampValue("2024-01-02 03:04:05.1234"), row.get("col8"));
assertEquals(new ExprStringValue("2024-01-02 03:04:05.1234"), row.get("col8"));
assertEquals(new ExprDateValue("2024-01-03 04:05:06.1234"), row.get("col9"));
assertEquals(new ExprStringValue("some string"), row.get("col10"));

Expand Down

0 comments on commit 224c61d

Please sign in to comment.