summaryrefslogtreecommitdiff
path: root/mysql-test/r/create.result
diff options
context:
space:
mode:
authorunknown <evgen@moonbone.local>2005-08-31 22:06:34 +0400
committerunknown <evgen@moonbone.local>2005-08-31 22:06:34 +0400
commita664f3df1f45d5cdb9cc1509e287b110f7fdc9a0 (patch)
treef7dcfa6e75508b6e2bc70128e34d4021c2a93c01 /mysql-test/r/create.result
parenta159c18fd1b9257ab6dd907f9944a83ffe038a59 (diff)
downloadmariadb-git-a664f3df1f45d5cdb9cc1509e287b110f7fdc9a0.tar.gz
create.test, create.result, sql_select.cc, item.cc:
After merge fix for bug #12537 sql/item.cc: After merge fix for bug #12537 sql/sql_select.cc: After merge fix for bug #12537 mysql-test/r/create.result: After merge fix for bug #12537 mysql-test/t/create.test: After merge fix for bug #12537
Diffstat (limited to 'mysql-test/r/create.result')
-rw-r--r--mysql-test/r/create.result5
1 files changed, 2 insertions, 3 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result
index c75dfa9c3db..e1e66019f65 100644
--- a/mysql-test/r/create.result
+++ b/mysql-test/r/create.result
@@ -597,11 +597,10 @@ create table t1(t1.name int);
create table t2(test.t2.name int);
drop table t1,t2;
CREATE TABLE t1 (f1 VARCHAR(255) CHARACTER SET utf8);
-CREATE TABLE t2 AS SELECT LEFT(f1,86) AS f2 FROM t1 UNION SELECT LEFT(f1,86)
-AS f2 FROM t1;
+CREATE TABLE t2 AS SELECT LEFT(f1,171) AS f2 FROM t1 UNION SELECT LEFT(f1,171) AS f2 FROM t1;
DESC t2;
Field Type Null Key Default Extra
-f2 varchar(86) YES NULL
+f2 varchar(171) YES NULL
DROP TABLE t1,t2;
create database mysqltest;
use mysqltest;