Skip to content

Commit

Permalink
fix debug building
Browse files Browse the repository at this point in the history
  • Loading branch information
taiyang-li committed Aug 5, 2024
1 parent 2df1b35 commit bcb980b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp-ch/local-engine/Storages/Output/OutputFormatFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Block OutputFormatFile::createHeaderWithPreferredSchema(const Block & header)
ColumnWithTypeAndName column(preferred_column.type->createColumn(), preferred_column.type, preferred_column.name);
columns.emplace_back(std::move(column));
}
assert(header.columns() == index);
assert(prefered_schema.columns() == index);
return {std::move(columns)};
}

Expand Down

0 comments on commit bcb980b

Please sign in to comment.