// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB
//! Physical-plan post-passes. Walks the lowered plan and applies expression-level rewrites - constant folding,
//! projection simplification - that were not worth doing during logical compilation. New optimisations register
//! through the same `walk_expressions_mut` interface so they can be composed without re-traversing the plan once
//! per pass.
use cratePhysicalPlan;