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

Merge tag '11.4' into 11.6

MariaDB 11.4.4 release
This commit is contained in:
Oleksandr Byelkin
2024-11-08 07:17:00 +01:00
743 changed files with 10281 additions and 4508 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);