1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MDEV-34679 ER_BAD_FIELD uses non-localizable substrings

This commit is contained in:
Sergei Golubchik
2024-07-18 15:20:42 +02:00
parent 99178311ac
commit 3a1cf2c85b
349 changed files with 1218 additions and 1796 deletions

View File

@ -934,7 +934,7 @@ partitions 3
(partition x1 tablespace ts1,
partition x2 tablespace ts2,
partition x3 tablespace ts3);
ERROR 42S22: Unknown column 'd' in 'partition function'
ERROR 42S22: Unknown column 'd' in 'PARTITION BY'
CREATE TABLE t1 (
a int not null,
b int not null,
@ -1156,7 +1156,7 @@ partition by range (a)
subpartition by hash (a+d)
(partition x1 values less than (1) (subpartition x11, subpartition x12),
partition x2 values less than (2) (subpartition x21, subpartition x22));
ERROR 42S22: Unknown column 'd' in 'partition function'
ERROR 42S22: Unknown column 'd' in 'PARTITION BY'
CREATE TABLE t1 (
a int not null,
b int not null,
@ -1176,7 +1176,7 @@ partition by range (a+d)
partitions 2
(partition x1 values less than (4) tablespace ts1,
partition x2 values less than (8) tablespace ts2);
ERROR 42S22: Unknown column 'd' in 'partition function'
ERROR 42S22: Unknown column 'd' in 'PARTITION BY'
CREATE TABLE t1 (
a int not null,
b int not null,
@ -1375,7 +1375,7 @@ partition by list (a+d)
partitions 2
(partition x1 values in (4) tablespace ts1,
partition x2 values in (8) tablespace ts2);
ERROR 42S22: Unknown column 'd' in 'partition function'
ERROR 42S22: Unknown column 'd' in 'PARTITION BY'
CREATE TABLE t1 (
a int not null,
b int not null,
@ -1440,7 +1440,7 @@ partition x2 values in (5))' at line 8
CREATE TABLE t1 (a int)
PARTITION BY RANGE (a)
(PARTITION p0 VALUES LESS THAN (x1));
ERROR 42S22: Unknown column 'x1' in 'partition function'
ERROR 42S22: Unknown column 'x1' in 'PARTITION BY'
CREATE TABLE t1(a int)
PARTITION BY RANGE (a) (PARTITION p1 VALUES LESS THAN(5));
insert into t1 values (10);