mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.2 into 10.3
This commit is contained in:
@ -39,3 +39,14 @@ TRUNCATE t1;
|
||||
SELECT * FROM t1;
|
||||
a
|
||||
DROP TEMPORARY TABLE t1;
|
||||
#
|
||||
# MDEV-23705 Assertion 'table->data_dir_path || !space'
|
||||
#
|
||||
CREATE TABLE t(c INT) ENGINE=InnoDB;
|
||||
ALTER TABLE t DISCARD TABLESPACE;
|
||||
RENAME TABLE t TO u;
|
||||
TRUNCATE u;
|
||||
Warnings:
|
||||
Warning 1814 Tablespace has been discarded for table `u`
|
||||
TRUNCATE u;
|
||||
DROP TABLE u;
|
||||
|
Reference in New Issue
Block a user