@@ -433,6 +433,7 @@ func (suite *integrationTestSuite) TestE2EValidWrites() {
433433
434434 err := s .
435435 Table (testTable ).
436+ Int64Column ("i" , 1 ).
436437 Float64Array1DColumn ("array_1d" , values1D ).
437438 Float64Array2DColumn ("array_2d" , values2D ).
438439 Float64Array3DColumn ("array_3d" , values3D ).
@@ -445,6 +446,7 @@ func (suite *integrationTestSuite) TestE2EValidWrites() {
445446 emptyNdArray , _ := qdb .NewNDArray [float64 ](2 , 2 , 0 , 2 )
446447 err = s .
447448 Table (testTable ).
449+ Int64Column ("i" , 2 ).
448450 Float64Array1DColumn ("array_1d" , []float64 {}).
449451 Float64Array2DColumn ("array_2d" , [][]float64 {{}}).
450452 Float64Array3DColumn ("array_3d" , [][][]float64 {{{}}}).
@@ -456,6 +458,7 @@ func (suite *integrationTestSuite) TestE2EValidWrites() {
456458 // null array
457459 return s .
458460 Table (testTable ).
461+ Int64Column ("i" , 3 ).
459462 Float64Array1DColumn ("array_1d" , nil ).
460463 Float64Array2DColumn ("array_2d" , nil ).
461464 Float64Array3DColumn ("array_3d" , nil ).
@@ -464,6 +467,7 @@ func (suite *integrationTestSuite) TestE2EValidWrites() {
464467 },
465468 tableData {
466469 Columns : []column {
470+ {"i" , "LONG" },
467471 {"array_1d" , "ARRAY" },
468472 {"array_2d" , "ARRAY" },
469473 {"array_3d" , "ARRAY" },
@@ -472,18 +476,21 @@ func (suite *integrationTestSuite) TestE2EValidWrites() {
472476 },
473477 Dataset : [][]interface {}{
474478 {
479+ float64 (1 ),
475480 []interface {}{float64 (1 ), float64 (2 ), float64 (3 ), float64 (4 ), float64 (5 ), nil },
476481 []interface {}{[]interface {}{float64 (1 ), float64 (2 )}, []interface {}{float64 (3 ), float64 (4 )}, []interface {}{float64 (5 ), float64 (6 )}, []interface {}{nil , nil }},
477482 []interface {}{[]interface {}{[]interface {}{float64 (1 ), float64 (2 )}, []interface {}{float64 (3 ), float64 (4 )}}, []interface {}{[]interface {}{float64 (5 ), float64 (6 )}, []interface {}{float64 (7 ), nil }}},
478483 []interface {}{[]interface {}{[]interface {}{[]interface {}{float64 (11 ), float64 (11 )}}, []interface {}{[]interface {}{float64 (11 ), float64 (11 )}}}, []interface {}{[]interface {}{[]interface {}{float64 (11 ), float64 (11 )}}, []interface {}{[]interface {}{float64 (11 ), nil }}}},
479484 "1970-01-01T00:00:00.000001Z" },
480485 {
486+ float64 (2 ),
481487 []interface {}{},
482488 []interface {}{},
483489 []interface {}{},
484490 []interface {}{},
485491 "1970-01-01T00:00:00.000002Z" },
486492 {
493+ float64 (3 ),
487494 nil ,
488495 nil ,
489496 nil ,
0 commit comments