@@ -142,8 +142,8 @@ pub fn plan_insert(ins: &ast::Insert, catalog: &dyn SqlCatalog) -> Result<Vec<Sq
142142 }
143143
144144 // Positional INSERT (no column list): bind values to the collection's
145- // declared column order so named projections/predicates can find them
146- // (#202). No-op for named inserts and schemaless collections.
145+ // declared column order so named projections/predicates can find them.
146+ // No-op for named inserts and schemaless collections.
147147 let columns = resolve_insert_columns ( columns, & info, rows_ast) ?;
148148
149149 // Vector-primary collection: bypass document encoding.
@@ -228,7 +228,7 @@ pub fn plan_upsert(ins: &ast::Insert, catalog: &dyn SqlCatalog) -> Result<Vec<Sq
228228 }
229229
230230 // Positional UPSERT (no column list): bind to the collection's declared
231- // column order — see `plan_insert` for the full rationale (#202) .
231+ // column order — see `plan_insert` for the full rationale.
232232 let columns = resolve_insert_columns ( columns, & info, rows_ast) ?;
233233
234234 let mut rows = convert_value_rows ( & columns, rows_ast) ?;
@@ -306,7 +306,7 @@ fn plan_upsert_with_on_conflict(
306306 }
307307
308308 // Positional UPSERT (no column list): bind to the collection's declared
309- // column order — see `plan_insert` for the full rationale (#202) .
309+ // column order — see `plan_insert` for the full rationale.
310310 let columns = resolve_insert_columns ( columns, & info, rows_ast) ?;
311311
312312 let mut rows = convert_value_rows ( & columns, rows_ast) ?;
0 commit comments