summaryrefslogtreecommitdiff
path: root/mysql-test/r/temp_table.result
diff options
context:
space:
mode:
authorAlexey Botchkov <holyfoot@askmonty.org>2016-07-18 11:50:08 +0400
committerAlexey Botchkov <holyfoot@askmonty.org>2016-07-18 11:50:08 +0400
commitbf2e31500c9a0a7fcdccfb724e9447347a3ab684 (patch)
tree241096e790cb73d15daea32ed6054982f49acfb6 /mysql-test/r/temp_table.result
parentc6fdb92ca829fed893d9e7324e80b1450de16087 (diff)
downloadmariadb-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.result3
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;