You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i18n(ja): remove spurious ordinal markers mistranslated from "the X <noun>"
Rebased onto the current i18n-ja-release-8.5 tip. The translation pipeline
rendered English "the `X` <noun>" (X a code span: keyword, column, stage,
phase, function, parameter) with a spurious Japanese ordinal — a "番目"/"目"
suffix (reads "the X-th <noun>") or a "第" prefix (第`Load`ステージ,
第`ALTER TABLE`). Both distort the meaning. This removes the spurious ordinals;
genuine ordinals (e.g. "the second `SELECT` statement") are kept.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@@ -100,7 +100,7 @@ CREATE TABLE t(id int UNIQUE KEY AUTO_INCREMENT, c int);
100
100
INSERT INTO t (c) VALUES (1)
101
101
```
102
102
103
-
インスタンス`A``[1,30000]`のAUTO_INCREMENT ID をキャッシュし、インスタンス`B``[30001,60000]`のAUTO_INCREMENT ID をキャッシュしている可能性があります。実行される`INSERT`ステートメントでは、各インスタンスのキャッシュされた ID が`AUTO_INCREMENT`番目の列にデフォルト値として割り当てられます。
103
+
インスタンス`A``[1,30000]`のAUTO_INCREMENT ID をキャッシュし、インスタンス`B``[30001,60000]`のAUTO_INCREMENT ID をキャッシュしている可能性があります。実行される`INSERT`ステートメントでは、各インスタンスのキャッシュされた ID が`AUTO_INCREMENT`列にデフォルト値として割り当てられます。
ERROR 8147 (23000): transaction aborted because lazy uniqueness check is enabled and an error occurred: [kv:1062]Duplicate entry 'bill' for key 'users.username'
0 commit comments