| 1 | #include "duckdb/planner/operator/logical_prepare.hpp" |
|---|---|
| 2 | |
| 3 | namespace duckdb { |
| 4 | |
| 5 | void LogicalPrepare::Serialize(FieldWriter &writer) const { |
| 6 | throw NotImplementedException(LogicalOperatorToString(type)); |
| 7 | } |
| 8 | |
| 9 | unique_ptr<LogicalOperator> LogicalPrepare::Deserialize(LogicalDeserializationState &state, FieldReader &reader) { |
| 10 | throw NotImplementedException(LogicalOperatorToString(type: state.type)); |
| 11 | } |
| 12 | |
| 13 | idx_t LogicalPrepare::EstimateCardinality(ClientContext &context) { |
| 14 | return 1; |
| 15 | } |
| 16 | |
| 17 | } // namespace duckdb |
| 18 |