summaryrefslogtreecommitdiff
path: root/mysql-test/r/func_regexp.result
diff options
context:
space:
mode:
authorbar@bar.myoffice.izhnet.ru <>2007-10-30 12:03:34 +0400
committerbar@bar.myoffice.izhnet.ru <>2007-10-30 12:03:34 +0400
commit70488d7dfe70ca9834d54cd8d034554340686594 (patch)
tree055f7dd7e7eb9e1550d06cb68db95e06cebefffd /mysql-test/r/func_regexp.result
parente3f7762226534acf44c03887436816e41473464c (diff)
parentc1f751ba9ba7512504f70768410db81d82e3690f (diff)
downloadmariadb-git-70488d7dfe70ca9834d54cd8d034554340686594.tar.gz
Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-5.1
into mysql.com:/home/bar/mysql-work/mysql-5.1-new-rpl-merge
Diffstat (limited to 'mysql-test/r/func_regexp.result')
-rw-r--r--mysql-test/r/func_regexp.result14
1 files changed, 13 insertions, 1 deletions
diff --git a/mysql-test/r/func_regexp.result b/mysql-test/r/func_regexp.result
index 05e56f05457..9d85b1d3e7f 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]+$');