[BUGFIX] fix hash join close core bug

This commit is contained in:
obdev
2024-09-19 08:57:28 +00:00
committed by ob-robot
parent 2974f452c5
commit 03d2dbd62a

View File

@ -89,7 +89,9 @@ public:
}
inline void close() {
return partition_store_->close();
if (OB_NOT_NULL(partition_store_)) {
partition_store_->close();
}
}
inline int rescan() {