Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
luwei16 committed Oct 25, 2024
1 parent 0cb8b92 commit 29f4dec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/exec/tablet_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ Status OlapTableSchemaParam::init(const TOlapTableSchemaParam& tschema) {
std::string is_null_str = tcolumn_desc.is_allow_null ? "true" : "false";
TPrimitiveType::type col_type = has_invalid_type ? TPrimitiveType::INVALID_TYPE
: tcolumn_desc.column_type.type;
std::string data_type_str = std::to_string(int64_t(col_type));
std::string data_type_str = std::to_string(int64_t(thrift_to_type(col_type)));
auto it = slots_map.find(to_lower(tcolumn_desc.column_name) + "+" + data_type_str +
is_null_str);
if (it == slots_map.end()) {
Expand Down

0 comments on commit 29f4dec

Please sign in to comment.