| 1 | //===----------------------------------------------------------------------===// |
| 2 | // DuckDB |
| 3 | // |
| 4 | // duckdb/optimizer/rule/comparison_simplification.hpp |
| 5 | // |
| 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #pragma once |
| 10 | |
| 11 | #include "duckdb/optimizer/rule.hpp" |
| 12 | |
| 13 | namespace duckdb { |
| 14 | |
| 15 | // The Comparison Simplification rule rewrites comparisons with a constant NULL (i.e. [x = NULL] => [NULL]) |
| 16 | class ComparisonSimplificationRule : public Rule { |
| 17 | public: |
| 18 | explicit ComparisonSimplificationRule(ExpressionRewriter &rewriter); |
| 19 | |
| 20 | unique_ptr<Expression> Apply(LogicalOperator &op, vector<reference<Expression>> &bindings, bool &changes_made, |
| 21 | bool is_root) override; |
| 22 | }; |
| 23 | |
| 24 | } // namespace duckdb |
| 25 | |