| 1 | //===----------------------------------------------------------------------===// |
|---|---|
| 2 | // DuckDB |
| 3 | // |
| 4 | // duckdb/planner/tableref/bound_dummytableref.hpp |
| 5 | // |
| 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #pragma once |
| 10 | |
| 11 | #include "duckdb/planner/bound_tableref.hpp" |
| 12 | |
| 13 | namespace duckdb { |
| 14 | |
| 15 | //! Represents a cross product |
| 16 | class BoundEmptyTableRef : public BoundTableRef { |
| 17 | public: |
| 18 | static constexpr const TableReferenceType TYPE = TableReferenceType::EMPTY; |
| 19 | |
| 20 | public: |
| 21 | explicit BoundEmptyTableRef(idx_t bind_index) : BoundTableRef(TableReferenceType::EMPTY), bind_index(bind_index) { |
| 22 | } |
| 23 | idx_t bind_index; |
| 24 | }; |
| 25 | } // namespace duckdb |
| 26 |