diff options
author | unknown <gluh@mysql.com/eagle.(none)> | 2007-01-24 20:11:36 +0400 |
---|---|---|
committer | unknown <gluh@mysql.com/eagle.(none)> | 2007-01-24 20:11:36 +0400 |
commit | e715019fa38efc73203a39cd04ac99e86c8c4ab6 (patch) | |
tree | ef2643848d7ebc22b0e634ca765826f44ccc15ef | |
parent | d663a34303e600a5e33c6b1ca27fb3e9b1f4646e (diff) | |
download | mariadb-git-e715019fa38efc73203a39cd04ac99e86c8c4ab6.tar.gz |
after merge fix
-rw-r--r-- | mysql-test/t/view.test | 31 |
1 files changed, 14 insertions, 17 deletions
diff --git a/mysql-test/t/view.test b/mysql-test/t/view.test index 2e67fc3d2d2..1fd3b2f119b 100644 --- a/mysql-test/t/view.test +++ b/mysql-test/t/view.test @@ -2946,6 +2946,20 @@ SELECT * FROM v; DROP VIEW v; +# +# BUG#24293: '\Z' token is not handled correctly in views +# + +--disable_warnings +DROP VIEW IF EXISTS v1; +--enable_warnings + +CREATE VIEW v1 AS SELECT 'The\ZEnd'; +SELECT * FROM v1; + +SHOW CREATE VIEW v1; + +DROP VIEW v1; --echo End of 5.0 tests. @@ -3000,23 +3014,6 @@ DROP VIEW v1, v2; DROP TABLE t1; # -# BUG#24293: '\Z' token is not handled correctly in views -# - ---disable_warnings -DROP VIEW IF EXISTS v1; ---enable_warnings - -CREATE VIEW v1 AS SELECT 'The\ZEnd'; -SELECT * FROM v1; - -SHOW CREATE VIEW v1; - -DROP VIEW v1; - ---echo End of 5.0 tests. - -# # Bug#21370 View renaming lacks tablename_to_filename encoding # --disable_warnings |