Skip to content

Commit

Permalink
udpate
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel39 committed Sep 26, 2024
1 parent 71361c6 commit 9d24406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/pipeline/exec/operator.h
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ class PipelineXSinkLocalStateBase {
// Set to true after close() has been called. subclasses should check and set this in
// close().
bool _closed = false;
bool _eos = false;
std::atomic<bool> _eos = false;
//NOTICE: now add a faker profile, because sometimes the profile record is useless
//so we want remove some counters and timers, eg: in join node, if it's broadcast_join
//and shared hash table, some counter/timer about build hash table is useless,
Expand Down

0 comments on commit 9d24406

Please sign in to comment.