Skip to content

Commit f5d1d9e

Browse files
committed
Add missing nils
1 parent be59b9a commit f5d1d9e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

integration_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)