// SPDX-License-Identifier: Apache-2.0
//! LATERAL subquery planning.
//!
//! Handles `FROM t, LATERAL (SELECT ...) x` and `JOIN LATERAL (...) ON true`
//! patterns by classifying the correlation and emitting the appropriate
//! `SqlPlan::LateralTopK` or `SqlPlan::LateralLoop` variant.
pub use plan_lateral_join;