diff options
author | unknown <monty@mysql.com> | 2005-02-03 18:00:50 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2005-02-03 18:00:50 +0200 |
commit | 8e279c4cf8e3bba242ed7e1790227ff9a4c5d966 (patch) | |
tree | 14992c6e4d00d432cd54fe1e99b8dd5ebba5a8b4 /mysql-test/r/func_str.result | |
parent | c41989a28e674829614068d0558bda2d220bdde2 (diff) | |
download | mariadb-git-8e279c4cf8e3bba242ed7e1790227ff9a4c5d966.tar.gz |
After merge fixes
sql/item.cc:
After merge fixes (bug during merge)
sql/sql_show.cc:
Ensure that lex->all_select_list is properly reset on function end
(Caused crashes after merge)
Diffstat (limited to 'mysql-test/r/func_str.result')
-rw-r--r-- | mysql-test/r/func_str.result | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mysql-test/r/func_str.result b/mysql-test/r/func_str.result index cb07ae0c173..71a1a7539b0 100644 --- a/mysql-test/r/func_str.result +++ b/mysql-test/r/func_str.result @@ -707,12 +707,6 @@ select count(*) as total, left(c,10) as reg from t1 group by reg order by reg de total reg 10 2004-12-10 drop table t1; -select quote(ltrim(concat(' ', 'a'))); -quote(ltrim(concat(' ', 'a'))) -'a' -select quote(trim(concat(' ', 'a'))); -quote(trim(concat(' ', 'a'))) -'a' select trim(null from 'kate') as "must_be_null"; must_be_null NULL |