diff options
author | unknown <bar@bar.myoffice.izhnet.ru> | 2007-10-16 14:58:59 +0500 |
---|---|---|
committer | unknown <bar@bar.myoffice.izhnet.ru> | 2007-10-16 14:58:59 +0500 |
commit | 666155f5e795dbd39f24764cf7bf460a1fa9a0c9 (patch) | |
tree | 69720aa53eb54e3b40df5814c1404f918400568f /mysql-test/t/func_regexp.test | |
parent | c8b6d1050933f0b9b18367c421702c9f16907de5 (diff) | |
parent | 64b19133820078a555e73ed1ff429984e82d1041 (diff) | |
download | mariadb-git-666155f5e795dbd39f24764cf7bf460a1fa9a0c9.tar.gz |
Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-5.0-rpl
into mysql.com:/home/bar/mysql-work/mysql-5.0.b31081
mysql-test/t/ctype_uca.test:
Auto merged
Diffstat (limited to 'mysql-test/t/func_regexp.test')
-rw-r--r-- | mysql-test/t/func_regexp.test | 23 |
1 files changed, 2 insertions, 21 deletions
diff --git a/mysql-test/t/func_regexp.test b/mysql-test/t/func_regexp.test index 23070c71fe9..f34830f6100 100644 --- a/mysql-test/t/func_regexp.test +++ b/mysql-test/t/func_regexp.test @@ -6,28 +6,9 @@ drop table if exists t1; --enable_warnings -create table t1 (s1 char(64),s2 char(64)); +set names latin1; +--source include/ctype_regex.inc -insert into t1 values('aaa','aaa'); -insert into t1 values('aaa|qqq','qqq'); -insert into t1 values('gheis','^[^a-dXYZ]+$'); -insert into t1 values('aab','^aa?b'); -insert into t1 values('Baaan','^Ba*n'); -insert into t1 values('aaa','qqq|aaa'); -insert into t1 values('qqq','qqq|aaa'); - -insert into t1 values('bbb','qqq|aaa'); -insert into t1 values('bbb','qqq'); -insert into t1 values('aaa','aba'); - -insert into t1 values(null,'abc'); -insert into t1 values('def',null); -insert into t1 values(null,null); -insert into t1 values('ghi','ghi['); - -select HIGH_PRIORITY s1 regexp s2 from t1; - -drop table t1; # # This test a bug in regexp on Alpha |