diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2016-08-29 22:29:12 +0200 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2016-09-06 22:52:39 +0200 |
commit | 06310902e5754fc2ead73d903267bb9fa85b85b2 (patch) | |
tree | 2d5cbe0c3f4207ce9c057be1edd091d523437794 /sql/sql_partition.h | |
parent | 1eb58ff3b8569d7dad1f5c180a5e55683e53d205 (diff) | |
download | mariadb-git-10.2-MDEV-8348.tar.gz |
MDEV-8348: Add catchall to all table partitioning for list partitions10.2-MDEV-8348
DEFAULT partition support added to LIST and LIST COLUMN partitioning.
Partitions Prunning added for DEFAULT partititon.
Diffstat (limited to 'sql/sql_partition.h')
-rw-r--r-- | sql/sql_partition.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/sql_partition.h b/sql/sql_partition.h index dd352b60120..b225c14fc53 100644 --- a/sql/sql_partition.h +++ b/sql/sql_partition.h @@ -177,6 +177,10 @@ typedef struct st_partition_iter iterator also produce id of the partition that contains NULL value. */ bool ret_null_part, ret_null_part_orig; + /* + We should return DEFAULT partition. + */ + bool ret_default_part, ret_default_part_orig; struct st_part_num_range { uint32 start; |