Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangstar333 committed Sep 24, 2024
1 parent a63b27b commit 42022e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion be/src/vec/core/block.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,6 @@ Status Block::serialize(int be_exec_version, PBlock* pblock,
return Status::InternalError("The block is large than 2GB({}), can not send by Protobuf.",
*compressed_bytes);
}
// LOG(INFO)<<"Block::serialize:"<<dump_structure();
return Status::OK();
}

Expand Down
6 changes: 4 additions & 2 deletions be/src/vec/data_types/data_type.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -198,11 +198,13 @@ PGenericType_TypeId IDataType::get_pdata_type(const IDataType* data_type) {
}
}
const char* IDataType::deserialize2(const char* buf, MutableColumnPtr* column, int be_exec_version) const {
CHECK(false)<<get_name();
throw doris::Exception(ErrorCode::NOT_IMPLEMENTED_ERROR,
"Data type {} deserialize2 not implement.", get_name());
return nullptr;
}
char* IDataType::serialize2(const IColumn& column, char* buf, int be_exec_version) const {
CHECK(false)<<get_name();
throw doris::Exception(ErrorCode::NOT_IMPLEMENTED_ERROR,
"Data type {} serialize2 not implement.", get_name());
return nullptr;
}
} // namespace doris::vectorized

0 comments on commit 42022e0

Please sign in to comment.