@@ -507,8 +507,8 @@ func (suite *integrationTestSuite) TestE2EValidWrites() {
507507 // decimal columns must be pre-created
508508 ddl (t ,
509509 "create table " + testTable + "(" +
510- "text_col decimal(18,3), binary_col decimal(18,3), " +
511- "binary_neg_col decimal(18,3), binary_null_col decimal(18,3), ts timestamp" +
510+ " text_col decimal(18,3), binary_col decimal(18,3), " +
511+ " binary_neg_col decimal(18,3), binary_null_col decimal(18,3), ts timestamp" +
512512 ") timestamp(ts) partition by day;" ,
513513 httpAddress )
514514
@@ -549,8 +549,8 @@ func (suite *integrationTestSuite) TestE2EValidWrites() {
549549 {"ts" , "TIMESTAMP" },
550550 },
551551 Dataset : [][]any {
552- {"123.450" , "123.450" , "-123.450" , "1970-01-01T00:00:00.000001Z" },
553- {"123.460" , "123.460" , "-123.460" , "1970-01-01T00:00:00.000002Z" },
552+ {"123.450" , "123.450" , "-123.450" , nil , "1970-01-01T00:00:00.000001Z" },
553+ {"123.460" , "123.460" , "-123.460" , nil , "1970-01-01T00:00:00.000002Z" },
554554 },
555555 Count : 2 ,
556556 },
0 commit comments