1// SPDX-License-Identifier: Apache-2.0 2 3//! JOIN planning: extract left/right tables, equi-join keys, join type. 4 5pub mod array_arm; 6pub mod constraint; 7pub mod plan; 8 9pub use plan::plan_join_from_select;