diff options
Diffstat (limited to 'mysql-test/r/sp.result')
-rw-r--r-- | mysql-test/r/sp.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result index e04f8fce5c4..2aea7be6c12 100644 --- a/mysql-test/r/sp.result +++ b/mysql-test/r/sp.result @@ -3076,4 +3076,13 @@ v1 v2 v3 v4 v5 v6 v7 NULL drop procedure bug8692| drop table t3| +drop function if exists bug10055| +create function bug10055(v char(255)) returns char(255) return lower(v)| +select t.column_name, bug10055(t.column_name) +from information_schema.columns as t +where t.table_schema = 'test' and t.table_name = 't1'| +column_name bug10055(t.column_name) +id id +data data +drop function bug10055| drop table t1,t2; |