mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge 10.2 into 10.3
This commit is contained in:
@ -17,3 +17,12 @@ ALTER TABLE t ADD FULLTEXT INDEX (b(64));
|
||||
ERROR HY000: Unknown error
|
||||
SET SESSION debug_dbug=@saved_debug_dbug;
|
||||
DROP TABLE t;
|
||||
CREATE TABLE t1 (pk INT, a VARCHAR(8), PRIMARY KEY(pk),
|
||||
FULLTEXT KEY(a)) ENGINE=InnoDB;
|
||||
CREATE TABLE t2 (b INT, FOREIGN KEY(b) REFERENCES t1(pk)) ENGINE=InnoDB;
|
||||
DROP TABLE t1;
|
||||
ERROR 23000: Cannot delete or update a parent row: a foreign key constraint fails
|
||||
SET DEBUG_DBUG="+d,fts_instrument_sync";
|
||||
INSERT INTO t1 VALUES(1, "mariadb");
|
||||
ALTER TABLE t1 FORCE;
|
||||
DROP TABLE t2, t1;
|
||||
|
Reference in New Issue
Block a user