Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
JaySon-Huang committed Feb 7, 2024
1 parent fb8383f commit d9dc96b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1576,7 +1576,8 @@ try
auto create_block = [&](UInt64 beg, UInt64 end, UInt64 value) {
constexpr UInt64 ts = 1; // Always use the same ts.
auto block = DMTestEnv::prepareSimpleWriteBlock(beg, end, false, ts);
block.insert(createColumn<UInt64>(std::vector<UInt64>(end - beg + 1, value), value_col_name, value_col_id));
block.insert(createColumn<UInt64>(std::vector<UInt64>(end - beg, value), value_col_name, value_col_id));
block.checkNumberOfRows();
return block;
};

Expand Down

0 comments on commit d9dc96b

Please sign in to comment.