diff options
author | unknown <bell@sanja.is.com.ua> | 2004-08-30 21:47:52 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-08-30 21:47:52 +0300 |
commit | 36b5ed33c88abf9448951843c12c0f32961017e2 (patch) | |
tree | 0effca4718721bcaaefc7b3cb80131ffe477f46c /mysql-test/t/view.test | |
parent | fffa919ffc5cdf0d53353bdcb2ab8043440b642b (diff) | |
download | mariadb-git-36b5ed33c88abf9448951843c12c0f32961017e2.tar.gz |
fixed printing of stored procedure functions names (BUG#5149)
mysql-test/r/view.result:
VIEW based on functions with complex names
mysql-test/t/view.test:
VIEW based on functions with complex names
sql/item_func.cc:
fixed printing of stored procedure functions names
Diffstat (limited to 'mysql-test/t/view.test')
-rw-r--r-- | mysql-test/t/view.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/t/view.test b/mysql-test/t/view.test index e73133afa67..4f5a6f3ddc4 100644 --- a/mysql-test/t/view.test +++ b/mysql-test/t/view.test @@ -1106,3 +1106,13 @@ select * from v3; show create view v3; drop view v3, v2, v1; drop table t2, t1; + +# +# VIEW based on functions with complex names +# +create function `f``1` () returns int return 5; +create view v1 as select test.`f``1` (); +show create view v1; +select * from v1; +drop view v1; +drop function `f``1`; |