mirror of
https://github.com/MariaDB/server.git
synced 2025-08-30 11:22:14 +03:00
ha_innobase::commit_inplace_alter_table(): Fix a regression that was
introduced in 6d1f1b61b5
(MDEV-24564).
19 lines
656 B
Plaintext
19 lines
656 B
Plaintext
CREATE TABLE t1(a INT, b VARCHAR(10), INDEX(a))ENGINE=InnoDB
|
|
PARTITION BY RANGE(a)
|
|
(PARTITION pa VALUES LESS THAN (3),
|
|
PARTITION pb VALUES LESS THAN (5));
|
|
CREATE TABLE t2(a INT, FOREIGN KEY(a) REFERENCES t1(a))ENGINE=INNODB
|
|
PARTITION BY RANGE(a)
|
|
(PARTITION pa VALUES LESS THAN (2),
|
|
PARTITION pb VALUES LESS THAN (4));
|
|
ERROR HY000: Partitioned tables do not support FOREIGN KEY
|
|
DROP TABLE t1;
|
|
#
|
|
# MDEV-24754 Server crash in
|
|
# ha_partition_inplace_ctx::~ha_partition_inplace_ctx
|
|
#
|
|
CREATE TABLE t1 (id INT PRIMARY KEY, a INT, va INT AS (a) VIRTUAL)
|
|
ENGINE=InnoDB PARTITION BY HASH(id) PARTITIONS 2;
|
|
ALTER TABLE t1 ADD b INT, ALGORITHM=INSTANT;
|
|
DROP TABLE t1;
|