Skip to content

Commit 6a6ff1a

Browse files
committed
Fixed the test
1 parent 2f79f5b commit 6a6ff1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ut/column_array_ut.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ TEST(ColumnArray, Slice_2D) {
149149
EXPECT_EQ(1u, slice->Size());
150150

151151
for (size_t j = 0; j < values[i].size(); ++j) {
152-
EXPECT_TRUE(CompareRecursive(values[i][j], *slice->GetAsColumnTyped<ColumnUInt64>(j)));
152+
EXPECT_TRUE(CompareRecursive(values[i][j], *slice->GetAsColumnTyped<ColumnArray>(0)->GetAsColumnTyped<ColumnUInt64>(j)));
153153
}
154154
}
155155
}

0 commit comments

Comments
 (0)