mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
15 lines
443 B
Plaintext
15 lines
443 B
Plaintext
#
|
|
# MDEV-7585 Assertion `thd->is_error() || kill_errno || thd->killed == ABORT_QUERY' failed in ha_rows filesort
|
|
#
|
|
SET sql_mode=STRICT_TRANS_TABLES;
|
|
|
|
CREATE TABLE t0 (i INT) ENGINE=MyISAM;
|
|
CREATE VIEW v1 AS SELECT * FROM t0;
|
|
CREATE VIEW v2 AS SELECT * FROM v1;
|
|
DROP VIEW IF EXISTS v1;
|
|
|
|
CREATE TABLE t1 (i INT) ENGINE=MyISAM;
|
|
INSERT INTO t1 SELECT TABLE_ROWS FROM information_schema.tables ORDER BY TABLE_ROWS;
|
|
DROP VIEW v2;
|
|
DROP TABLE t1, t0;
|