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