diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-06-19 19:46:12 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-06-27 09:40:55 +0200 |
commit | 794a895c4c12bc45321c3c7000441204946d9129 (patch) | |
tree | 7daa7ad6bc74f74d785195dab574d634ccf54a39 /mysql-test/r/temp_table.result | |
parent | bfabaf64866203b79b6ef251c89e31219ec05d9d (diff) | |
download | mariadb-git-794a895c4c12bc45321c3c7000441204946d9129.tar.gz |
simplify CREATE TEMPORARY TABLE parser rule
as a bonus that makes CREATE TEMPORARY TEMPORARY TABLE illegal
Diffstat (limited to 'mysql-test/r/temp_table.result')
-rw-r--r-- | mysql-test/r/temp_table.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/temp_table.result b/mysql-test/r/temp_table.result index 0a1701be0d7..dca925040b0 100644 --- a/mysql-test/r/temp_table.result +++ b/mysql-test/r/temp_table.result @@ -291,3 +291,5 @@ test.t1 repair status OK test.t2 repair status OK test.t3 repair status OK DROP TABLES t1, t2, t3; +create temporary temporary table t1 (a int); +ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'temporary table t1 (a int)' at line 1 |