1 | #include "duckdb/execution/expression_executor_state.hpp" |
---|---|
2 | #include "duckdb/execution/expression_executor.hpp" |
3 | #include "duckdb/planner/expression.hpp" |
4 | |
5 | using namespace duckdb; |
6 | using namespace std; |
7 | |
8 | void ExpressionState::AddChild(Expression *expr) { |
9 | child_states.push_back(ExpressionExecutor::InitializeState(*expr, root)); |
10 | } |
11 |