diff options
author | acurtis@pcgem.rdg.cyberkinetica.com <> | 2004-08-30 22:08:51 +0100 |
---|---|---|
committer | acurtis@pcgem.rdg.cyberkinetica.com <> | 2004-08-30 22:08:51 +0100 |
commit | 203debc666fcdd35b686fcec55dbe3e088a83bc7 (patch) | |
tree | fef441c813df542b22b8ef7283651724a34e9424 /mysql-test/r/sp.result | |
parent | 072d4e0c180652e028c8194ff001474b32ea6cd5 (diff) | |
download | mariadb-git-203debc666fcdd35b686fcec55dbe3e088a83bc7.tar.gz |
Fix column name where it starts with a backtick
Diffstat (limited to 'mysql-test/r/sp.result')
-rw-r--r-- | mysql-test/r/sp.result | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result index 17e8e499c8d..566b80061d5 100644 --- a/mysql-test/r/sp.result +++ b/mysql-test/r/sp.result @@ -1649,3 +1649,8 @@ call p1(); 1 drop procedure p1; drop table t1; +create function `foo` () returns int return 5; +select `foo` (); +`foo` () +5 +drop function `foo`; |