Packages

An Elixir DuckDB library

Current section

Files

Jump to
exduckdb c_src duckdb src planner binder expression bind_lambda.cpp
Raw

c_src/duckdb/src/planner/binder/expression/bind_lambda.cpp

#include "duckdb/parser/expression/lambda_expression.hpp"
#include "duckdb/planner/expression_binder.hpp"
namespace duckdb {
BindResult ExpressionBinder::BindExpression(LambdaExpression &expr, idx_t depth) {
string error;
// // set up the lambda capture
// FIXME: need to get the type from the list for binding
// lambda_capture = expr.capture_name;
// // bind the child
// BindChild(expr.expression, depth, error);
// // clear the lambda capture
// lambda_capture = "";
// if (!error.empty()) {
// return BindResult(error);
// }
// expr.Print();
return BindResult("FIXME: bind lambda function");
}
} // namespace duckdb