Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
amorynan committed Nov 20, 2023
1 parent 4897784 commit 08e8987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/exec/schema_scanner/schema_columns_scanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ std::string SchemaColumnsScanner::_type_to_string(TColumnDesc& desc) {
for (int i = 0; i < desc.children.size() - 1; ++i) {
ret += _type_to_string(desc.children[i]) + ",";
}
ret += _type_to_string(desc.children[desc.children.size()-1]);
ret += _type_to_string(desc.children[desc.children.size() - 1]);
}
ret += ">";
return ret;
Expand Down

0 comments on commit 08e8987

Please sign in to comment.