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/r/func_regexp.result | |
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/r/func_regexp.result')
-rw-r--r-- | mysql-test/r/func_regexp.result | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/mysql-test/r/func_regexp.result b/mysql-test/r/func_regexp.result index 584c8a9b820..752ec3a5810 100644 --- a/mysql-test/r/func_regexp.result +++ b/mysql-test/r/func_regexp.result @@ -1,5 +1,17 @@ drop table if exists t1; -create table t1 (s1 char(64),s2 char(64)); +set names latin1; +drop table if exists t1; +create table t1 as +select repeat(' ', 64) as s1, repeat(' ',64) as s2 +union +select null, null; +show create table t1; +Table Create Table +t1 CREATE TABLE `t1` ( + `s1` varchar(64) default NULL, + `s2` varchar(64) default NULL +) ENGINE=MyISAM DEFAULT CHARSET=latin1 +delete from t1; insert into t1 values('aaa','aaa'); insert into t1 values('aaa|qqq','qqq'); insert into t1 values('gheis','^[^a-dXYZ]+$'); |