Commit eb3146a
authored
Add support for
## Summary
Emulates MySQL's `NO_AUTO_VALUE_ON_ZERO` SQL mode behavior on SQLite.
MySQL treats a literal `0` in an `AUTO_INCREMENT` column the same as
`NULL` and generates the next sequence value. This can be suppressed by
the `NO_AUTO_VALUE_ON_ZERO` SQL mode, which is **not** part of MySQL's
default modes.
Some legacy WordPress versions rely on the default behavior — e.g. WP
1.0's `post.php` emits:
```sql
INSERT INTO wp_posts (ID, post_author, post_title, post_status)
VALUES ('0', '1', 'Hello', 'publish');
```
On MySQL this stores `ID = 1`. The current SQLite driver stored `ID =
0`, which fails with legacy WP.
## Scope
- **Affects:** `INSERT` / `REPLACE` value lists (including `VALUES`,
`SET`, and `SELECT` forms).
- **Does not affect:** `UPDATE` (and the UPDATE half of `INSERT ... ON
DUPLICATE KEY UPDATE`). MySQL never auto-generates `AUTO_INCREMENT`
values on UPDATE — zeros are stored literally.
The default `sql_mode` was already correct — `NO_AUTO_VALUE_ON_ZERO` is
absent, matching MySQL 8.0 defaults.
## Tests
- `testDefaultSqlModeDoesNotIncludeNoAutoValueOnZero` — asserts the
default modes.
- `testAutoIncrementZeroAdvancesSequenceByDefault` — `0`, `'0'`, and
`NULL` all generate new ids.
- `testAutoIncrementZeroAdvancesSequenceForAllInsertShapes` — covers
`INSERT ... SET`, `INSERT ... SELECT`, and `REPLACE`.
- `testNoAutoValueOnZeroSqlMode` — with the mode on, literal `0` is
stored as-is; only `NULL` advances the sequence.
See:
https://dev.mysql.com/doc/refman/8.4/en/sql-mode.html#sqlmode_no_auto_value_on_zeroNO_AUTO_VALUE_ON_ZERO SQL mode (#366)1 parent de8f9b0 commit eb3146a
2 files changed
Lines changed: 101 additions & 7 deletions
File tree
- packages/mysql-on-sqlite
- src/sqlite
- tests
Lines changed: 30 additions & 7 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5351 | 5351 | | |
5352 | 5352 | | |
5353 | 5353 | | |
5354 | | - | |
5355 | | - | |
5356 | | - | |
| 5354 | + | |
| 5355 | + | |
| 5356 | + | |
| 5357 | + | |
| 5358 | + | |
| 5359 | + | |
| 5360 | + | |
| 5361 | + | |
| 5362 | + | |
| 5363 | + | |
| 5364 | + | |
| 5365 | + | |
| 5366 | + | |
| 5367 | + | |
| 5368 | + | |
| 5369 | + | |
| 5370 | + | |
| 5371 | + | |
5357 | 5372 | | |
5358 | 5373 | | |
5359 | 5374 | | |
5360 | 5375 | | |
5361 | 5376 | | |
5362 | 5377 | | |
5363 | 5378 | | |
| 5379 | + | |
| 5380 | + | |
| 5381 | + | |
5364 | 5382 | | |
5365 | 5383 | | |
5366 | | - | |
| 5384 | + | |
| 5385 | + | |
| 5386 | + | |
| 5387 | + | |
| 5388 | + | |
| 5389 | + | |
5367 | 5390 | | |
5368 | 5391 | | |
5369 | 5392 | | |
| |||
6206 | 6229 | | |
6207 | 6230 | | |
6208 | 6231 | | |
6209 | | - | |
| 6232 | + | |
6210 | 6233 | | |
6211 | 6234 | | |
6212 | 6235 | | |
| |||
6223 | 6246 | | |
6224 | 6247 | | |
6225 | 6248 | | |
6226 | | - | |
| 6249 | + | |
6227 | 6250 | | |
6228 | 6251 | | |
6229 | 6252 | | |
| |||
6534 | 6557 | | |
6535 | 6558 | | |
6536 | 6559 | | |
6537 | | - | |
| 6560 | + | |
6538 | 6561 | | |
6539 | 6562 | | |
6540 | 6563 | | |
| |||
Lines changed: 71 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2774 | 2774 | | |
2775 | 2775 | | |
2776 | 2776 | | |
| 2777 | + | |
| 2778 | + | |
| 2779 | + | |
| 2780 | + | |
| 2781 | + | |
| 2782 | + | |
| 2783 | + | |
| 2784 | + | |
| 2785 | + | |
| 2786 | + | |
| 2787 | + | |
| 2788 | + | |
| 2789 | + | |
| 2790 | + | |
| 2791 | + | |
| 2792 | + | |
| 2793 | + | |
| 2794 | + | |
| 2795 | + | |
| 2796 | + | |
| 2797 | + | |
| 2798 | + | |
| 2799 | + | |
| 2800 | + | |
| 2801 | + | |
| 2802 | + | |
| 2803 | + | |
| 2804 | + | |
| 2805 | + | |
| 2806 | + | |
| 2807 | + | |
| 2808 | + | |
| 2809 | + | |
| 2810 | + | |
| 2811 | + | |
| 2812 | + | |
| 2813 | + | |
| 2814 | + | |
| 2815 | + | |
| 2816 | + | |
| 2817 | + | |
| 2818 | + | |
| 2819 | + | |
| 2820 | + | |
| 2821 | + | |
| 2822 | + | |
| 2823 | + | |
| 2824 | + | |
| 2825 | + | |
| 2826 | + | |
| 2827 | + | |
| 2828 | + | |
| 2829 | + | |
| 2830 | + | |
| 2831 | + | |
| 2832 | + | |
| 2833 | + | |
| 2834 | + | |
| 2835 | + | |
| 2836 | + | |
| 2837 | + | |
| 2838 | + | |
| 2839 | + | |
| 2840 | + | |
| 2841 | + | |
| 2842 | + | |
| 2843 | + | |
| 2844 | + | |
| 2845 | + | |
| 2846 | + | |
| 2847 | + | |
2777 | 2848 | | |
2778 | 2849 | | |
2779 | 2850 | | |
| |||
0 commit comments