1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00

Merge host.loc:/work/bugs/5.0-bugteam-36488

into  host.loc:/work/bk/5.1-bugteam


sql/item_strfunc.cc:
  Auto merged
This commit is contained in:
unknown
2008-05-16 12:59:32 +05:00
3 changed files with 23 additions and 0 deletions

View File

@@ -82,3 +82,10 @@ a
1234562
x
drop table t1;
CREATE TABLE t1 (c1 varchar(100), c2 varchar(100));
INSERT INTO t1 VALUES ('',''), ('','First'), ('Random','Random');
SELECT * FROM t1 WHERE CONCAT(c1,' ',c2) REGEXP 'First.*';
c1 c2
First
DROP TABLE t1;
# End of 5.0 tests