1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Merge branch '10.6' into 10.11

This commit is contained in:
Oleksandr Byelkin
2024-10-29 15:24:38 +01:00
655 changed files with 8060 additions and 3541 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);