Skip to content

Commit

Permalink
formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangstar333 committed Aug 30, 2024
1 parent 9681fb9 commit a268471
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions be/src/pipeline/exec/operator.h
Original file line number Diff line number Diff line change
Expand Up @@ -753,19 +753,20 @@ class OperatorXBase : public OperatorBase {
TPlanNodeType::type _type;
ObjectPool* _pool = nullptr;
std::vector<TupleId> _tuple_ids;
private:
// The expr of operator set to private permissions, as cannot be executed concurrently,

private:
// The expr of operator set to private permissions, as cannot be executed concurrently,
// should use local state's expr.
vectorized::VExprContextSPtrs _conjuncts;
vectorized::VExprContextSPtrs _projections;
// Used in common subexpression elimination to compute intermediate results.
std::vector<vectorized::VExprContextSPtrs> _intermediate_projections;

protected:
RowDescriptor _row_descriptor;
std::unique_ptr<RowDescriptor> _output_row_descriptor = nullptr;
std::vector<RowDescriptor> _intermediate_output_row_descriptor;


/// Resource information sent from the frontend.
const TBackendResourceProfile _resource_profile;

Expand Down

0 comments on commit a268471

Please sign in to comment.