Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
533 changes: 533 additions & 0 deletions docs/audits/MATCH_CLAUSE_ARCHITECTURE_PROPOSAL.md

Large diffs are not rendered by default.

4,338 changes: 0 additions & 4,338 deletions src/query_planner/logical_plan/match_clause.rs

This file was deleted.

7 changes: 7 additions & 0 deletions src/query_planner/logical_plan/match_clause/errors.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
//! Error types for MATCH clause processing.
//!
//! This module re-exports the main LogicalPlanError since match clause
//! errors are part of the broader logical plan error hierarchy.

pub use crate::query_planner::logical_plan::errors::LogicalPlanError;
pub use crate::query_planner::logical_plan::plan_builder::LogicalPlanResult;
Loading