mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 17:14:30 +02:00
fix extension_based_table_discovery for partitioned tables
typo. the code was not matching the comment
This commit is contained in:
parent
8b9432ffac
commit
7baff9f687
3 changed files with 14 additions and 1 deletions
|
|
@ -153,3 +153,9 @@ t1 CREATE TABLE `t1` (
|
|||
PARTITIONS 5 */
|
||||
#Cleanup.
|
||||
DROP TABLE t1;
|
||||
create database mysqltest1;
|
||||
create table mysqltest1.t1 (a int not null, b int not null) engine=archive
|
||||
partition by list(a) subpartition by hash(b)
|
||||
(partition p1 values in (1),
|
||||
partition p2 values in (2));
|
||||
drop database mysqltest1;
|
||||
|
|
|
|||
|
|
@ -147,3 +147,10 @@ SHOW CREATE TABLE t1;
|
|||
|
||||
--echo #Cleanup.
|
||||
DROP TABLE t1;
|
||||
|
||||
create database mysqltest1;
|
||||
create table mysqltest1.t1 (a int not null, b int not null) engine=archive
|
||||
partition by list(a) subpartition by hash(b)
|
||||
(partition p1 values in (1),
|
||||
partition p2 values in (2));
|
||||
drop database mysqltest1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue