Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
wuwenchi committed Nov 22, 2024
1 parent 420d989 commit 5732eb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions be/src/vec/runtime/vparquet_transformer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,11 +272,11 @@ Status VParquetTransformer::_parse_schema() {
for (size_t i = 0; i < _output_vexpr_ctxs.size(); i++) {
std::shared_ptr<arrow::DataType> type;
RETURN_IF_ERROR(convert_to_arrow_type(_output_vexpr_ctxs[i]->root()->type(), &type,
_state->timezone()));
_state->timezone()));
if (_parquet_schemas != nullptr) {
std::shared_ptr<arrow::Field> field =
arrow::field(_parquet_schemas->operator[](i).schema_column_name, type,
_output_vexpr_ctxs[i]->root()->is_nullable());
_output_vexpr_ctxs[i]->root()->is_nullable());
fields.emplace_back(field);
} else {
std::shared_ptr<arrow::Field> field = arrow::field(
Expand Down

0 comments on commit 5732eb1

Please sign in to comment.