use crate::;
/// Bound `INSERT INTO` statement — resolved and validated, ready for the
/// executor to apply to storage.
///
/// Each row in `rows` has already been reordered to match the target
/// table's column order exactly as declared in the catalog (not
/// necessarily the order the user listed columns/values in the original
/// statement) and padded with [`crate::ast::Value::Null`] for any column
/// not explicitly given a value. This means the executor and storage
/// layers can serialize each row directly against
/// [`crate::catalog::objects::TableEntry::columns`] with no further
/// reordering or lookup.