1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

A fix (bug #5498 TRIM fails with LEADING or TRAILING if remstr = str).

This commit is contained in:
unknown
2004-09-13 14:25:43 +05:00
parent c1e8427686
commit cc98eea53b
3 changed files with 16 additions and 3 deletions

View File

@ -172,3 +172,10 @@ create table t1(a char(4));
insert into t1 values ('one'),(NULL),('two'),('four');
select a, quote(a), isnull(quote(a)), quote(a) is null, ifnull(quote(a), 'n') from t1;
drop table t1;
#
# Bug #5498: TRIM fails with LEADING or TRAILING if remstr = str
#
select trim(trailing 'foo' from 'foo');
select trim(leading 'foo' from 'foo');