use crate::;
/// Bound `SELECT` statement — resolved and validated, ready for the
/// executor to scan from storage.
///
/// # Scope
///
/// Currently only supports `SELECT * FROM table_name` — a single table,
/// wildcard projection, no filtering, joins, grouping, or ordering. The
/// binder rejects anything outside this shape.