diff options
author | Alexey Botchkov <holyfoot@askmonty.org> | 2016-07-18 11:50:08 +0400 |
---|---|---|
committer | Alexey Botchkov <holyfoot@askmonty.org> | 2016-07-18 11:50:08 +0400 |
commit | bf2e31500c9a0a7fcdccfb724e9447347a3ab684 (patch) | |
tree | 241096e790cb73d15daea32ed6054982f49acfb6 /mysql-test/r/temp_table.result | |
parent | c6fdb92ca829fed893d9e7324e80b1450de16087 (diff) | |
download | mariadb-git-bf2e31500c9a0a7fcdccfb724e9447347a3ab684.tar.gz |
MDEV-8569 build_table_filename() doesn't support temporary tables.
Temporary tables support added for RENAME and ALTER TABLE.
Diffstat (limited to 'mysql-test/r/temp_table.result')
-rw-r--r-- | mysql-test/r/temp_table.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/temp_table.result b/mysql-test/r/temp_table.result index 0a1701be0d7..dd8bab31d75 100644 --- a/mysql-test/r/temp_table.result +++ b/mysql-test/r/temp_table.result @@ -291,3 +291,6 @@ test.t1 repair status OK test.t2 repair status OK test.t3 repair status OK DROP TABLES t1, t2, t3; +CREATE TEMPORARY TABLE t1 (a int); +RENAME TABLE t1 TO t2; +DROP TABLE t2; |