diff options
author | Gleb Shchepa <gshchepa@mysql.com> | 2008-06-24 21:03:17 +0500 |
---|---|---|
committer | Gleb Shchepa <gshchepa@mysql.com> | 2008-06-24 21:03:17 +0500 |
commit | 2c77798c7439f7464f371932888f6ac54217f981 (patch) | |
tree | 2e492345dfd615a19cfdcc25861978ce1d2c1282 /mysql-test/t/mysql_delimiter.sql | |
parent | 6eb2e76abdbf903d6b3848961f942c7d41d640a0 (diff) | |
download | mariadb-git-2c77798c7439f7464f371932888f6ac54217f981.tar.gz |
back-port from 5.1.
Bug#33812: mysql client incorrectly parsing DELIMITER
Remove unnecessary and incorrect code that tried
to pull delimiter commands out of the middle of
statements.
Diffstat (limited to 'mysql-test/t/mysql_delimiter.sql')
-rw-r--r-- | mysql-test/t/mysql_delimiter.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/t/mysql_delimiter.sql b/mysql-test/t/mysql_delimiter.sql index 533ac2ce093..917401275a2 100644 --- a/mysql-test/t/mysql_delimiter.sql +++ b/mysql-test/t/mysql_delimiter.sql @@ -61,6 +61,12 @@ show tables// delimiter ; # Reset delimiter # +# Bug #33812: mysql client incorrectly parsing DELIMITER +# +select a as delimiter from t1 +delimiter ; # Reset delimiter + +# # Bug #36244: MySQL CLI doesn't recognize standalone -- as comment # before DELIMITER statement # |