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 | 5e48ab10b206d306cc5f75390048fb7b5790b7cc (patch) | |
tree | 69720aa53eb54e3b40df5814c1404f918400568f /mysql-test/r/func_regexp.result | |
parent | 166fab60611bfaab1bc613fbcf0d6904777c05a5 (diff) | |
parent | 7ea992032eacd4475f9af4a9166c570a5e0a00e3 (diff) | |
download | mariadb-git-5e48ab10b206d306cc5f75390048fb7b5790b7cc.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]+$'); |