1#include "duckdb/parser/tableref/crossproductref.hpp"
2#include "duckdb/planner/binder.hpp"
3#include "duckdb/planner/tableref/bound_crossproductref.hpp"
4
5using namespace duckdb;
6using namespace std;
7
8unique_ptr<BoundTableRef> Binder::Bind(CrossProductRef &ref) {
9 auto result = make_unique<BoundCrossProductRef>();
10 result->left = Bind(*ref.left);
11 result->right = Bind(*ref.right);
12 return move(result);
13}
14