[refactor](pipelineX) Simplify set operation (#25502)

This commit is contained in:
Gabriel
2023-10-17 15:11:46 +08:00
committed by GitHub
parent 652d6c57c0
commit 31a5e072e7
8 changed files with 30 additions and 105 deletions

View File

@ -320,7 +320,7 @@ Status VSetOperationNode<is_intersect>::process_build_block(Block& block, uint8_
using HashTableCtxType = std::decay_t<decltype(arg)>;
if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
HashTableBuild<HashTableCtxType, is_intersect> hash_table_build_process(
rows, raw_ptrs, this, offset, state);
this, rows, raw_ptrs, offset, state);
st = hash_table_build_process(arg, _arena);
} else {
LOG(FATAL) << "FATAL: uninited hash table";