fix hash join vec2.0 typo

This commit is contained in:
Cai-Yao 2024-12-23 12:44:54 +00:00 committed by ob-robot
parent c2c95df51c
commit 7506859990

View File

@ -45,7 +45,7 @@ struct Int128Key {
data_1_ = *(reinterpret_cast<const int64_t *>(row->get_cell_payload(row_meta, key_proj->at(1))));
}
inline bool operator==(const Int128Key &other) const {
return data_0_ == other.data_0_ && data_1_ == data_1_;
return data_0_ == other.data_0_ && data_1_ == other.data_1_;
}
TO_STRING_KV(K_(data_0), K_(data_1));