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