mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
WL#3352, Introducing Column list partitioning, makes it possible to partition on most data types, makes it possible to prune on multi-field partitioning
This commit is contained in:
@@ -180,7 +180,7 @@ partitions 3
|
||||
(partition x1, partition x2);
|
||||
|
||||
#
|
||||
# Partition by key specified 3 partitions but only defined 2 => error
|
||||
# Partition by hash, random function
|
||||
#
|
||||
--error 1064
|
||||
CREATE TABLE t1 (
|
||||
@@ -193,7 +193,7 @@ partitions 2
|
||||
(partition x1, partition x2);
|
||||
|
||||
#
|
||||
# Partition by key specified 3 partitions but only defined 2 => error
|
||||
# Partition by range, random function
|
||||
#
|
||||
--error 1064
|
||||
CREATE TABLE t1 (
|
||||
@@ -206,7 +206,7 @@ partitions 2
|
||||
(partition x1 values less than (0), partition x2 values less than (2));
|
||||
|
||||
#
|
||||
# Partition by key specified 3 partitions but only defined 2 => error
|
||||
# Partition by list, random function
|
||||
#
|
||||
--error 1064
|
||||
CREATE TABLE t1 (
|
||||
|
||||
Reference in New Issue
Block a user