mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-04 08:54:20 +01:00
Column order handled incorrectly for multi-rows insert case ```sql turso> CREATE TABLE t(x, y, z); turso> INSERT INTO t(z, x) VALUES (1, 2), (3, 4); turso> SELECT * FROM t; ┌───┬───┬───┐ │ x │ y │ z │ ├───┼───┼───┤ │ │ 2 │ │ ├───┼───┼───┤ │ │ 4 │ │ └───┴───┴───┘ ``` Closes #2109