| 1 | #include "duckdb/parser/expression/constant_expression.hpp" | 
|---|---|
| 2 | #include "duckdb/planner/expression/bound_constant_expression.hpp" | 
| 3 | #include "duckdb/planner/expression_binder.hpp" | 
| 4 | |
| 5 | using namespace duckdb; | 
| 6 | using namespace std; | 
| 7 | |
| 8 | BindResult ExpressionBinder::BindExpression(ConstantExpression &expr, idx_t depth) { | 
| 9 | return BindResult(make_unique<BoundConstantExpression>(expr.value), expr.sql_type); | 
| 10 | } | 
| 11 | 
