mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-13715 Server crashes in ha_partition::engine_name
This happened when trying to PARTITION a SEQUENCE table Problem was that wrong function was used to get engine name Signed-off-by: Monty <monty@mariadb.org>
This commit is contained in:
7
mysql-test/suite/sql_sequence/partition.result
Normal file
7
mysql-test/suite/sql_sequence/partition.result
Normal file
@ -0,0 +1,7 @@
|
||||
#
|
||||
# MDEV-13715 ha_partition::engine_name() segfault fix
|
||||
#
|
||||
create sequence s;
|
||||
alter table s partition by hash(start_value) partitions 2;
|
||||
ERROR HY000: Table storage engine 'partition' does not support the create option 'SEQUENCE'
|
||||
drop sequence s;
|
Reference in New Issue
Block a user