diff options
author | Sinisa@sinisa.nasamreza.org <> | 2004-12-23 21:08:54 +0200 |
---|---|---|
committer | Sinisa@sinisa.nasamreza.org <> | 2004-12-23 21:08:54 +0200 |
commit | 3c5a3258972fa2487f0997db14ee6f31be862dbb (patch) | |
tree | 486acf020b2189aeb3209550d5dfac42f70462dc /mysql-test/t/func_str.test | |
parent | e409ebf143c754b0a846e776854def244186943c (diff) | |
download | mariadb-git-3c5a3258972fa2487f0997db14ee6f31be862dbb.tar.gz |
Fix for a bug #7495
Diffstat (limited to 'mysql-test/t/func_str.test')
-rw-r--r-- | mysql-test/t/func_str.test | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/mysql-test/t/func_str.test b/mysql-test/t/func_str.test index 421512c4dc4..79a996e7e78 100644 --- a/mysql-test/t/func_str.test +++ b/mysql-test/t/func_str.test @@ -191,9 +191,5 @@ select trim(leading 'foo' from 'foo'); # Bug #7495 # -create table t1 (a varchar(80), b varchar(80)); -insert into t1 values(NULL,"12345"); -insert into t1 values(NULL,"chm"); -select quote(ltrim(concat(' ',t1.b))) from t1; -select quote(trim(concat(' ',t1.b))) from t1; -drop table t1; +select quote(ltrim(concat(' ', 'a'))); +select quote(trim(concat(' ', 'a'))); |