Skip to content

Commit

Permalink
Add expressionexecutor
Browse files Browse the repository at this point in the history
  • Loading branch information
Dtenwolde committed Feb 27, 2024
1 parent a4d85cb commit 92536ff
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,17 @@ class PathFindingLocalSourceState : public LocalSourceState {
public:
explicit PathFindingLocalSourceState(ClientContext &context,
const PhysicalPathFinding &op)
: op(op), true_sel(STANDARD_VECTOR_SIZE) {
: op(op), true_sel(STANDARD_VECTOR_SIZE), left_executor(context), right_executor(context){
}

const PhysicalPathFinding &op;

// Trailing predicates
SelectionVector true_sel;

ExpressionExecutor left_executor;
ExpressionExecutor right_executor;

};

class PathFindingGlobalSourceState : public GlobalSourceState {
Expand Down

0 comments on commit 92536ff

Please sign in to comment.