fix hash join do not clear last batch memory leads OOM

This commit is contained in:
18523270951@163.com
2023-08-08 09:54:52 +00:00
committed by ob-robot
parent 0ac8dd7d1b
commit b047318590
3 changed files with 6 additions and 4 deletions

View File

@ -673,6 +673,7 @@ public:
class IterationAge
{
public:
IterationAge() : age_(0) {}
int64_t get(void) const { return age_; }
void inc(void) { age_ += 1; }
private: