summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorunknown <jimw@mysql.com>2005-05-07 08:25:59 -0700
committerunknown <jimw@mysql.com>2005-05-07 08:25:59 -0700
commit3cd4b7a99b9b2a984cc3786c503aa5b5ea93d3bb (patch)
treecfb0e0d64c6640f136fcc9b67e2996b121e223bf /mysql-test
parent474a4d5d8d997f7cc068a8d1b4a14138e3bc55af (diff)
downloadmariadb-git-3cd4b7a99b9b2a984cc3786c503aa5b5ea93d3bb.tar.gz
Fix tests after merge
mysql-test/r/create.result: Update result mysql-test/r/type_ranges.result: Update result mysql-test/t/archive.test: Rewrite path for embedded server testing
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/r/create.result2
-rw-r--r--mysql-test/r/type_ranges.result2
-rw-r--r--mysql-test/t/archive.test2
3 files changed, 4 insertions, 2 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result
index fc7fee8f997..61de9c52765 100644
--- a/mysql-test/r/create.result
+++ b/mysql-test/r/create.result
@@ -429,7 +429,7 @@ explain t2;
Field Type Null Key Default Extra
a int(11) YES NULL
b bigint(11) NO 0
-c bigint(10) NO 0
+c bigint(11) NO 0
d date YES NULL
e varchar(1) NO
f datetime YES NULL
diff --git a/mysql-test/r/type_ranges.result b/mysql-test/r/type_ranges.result
index 3b07464c8f4..b30e41f00d3 100644
--- a/mysql-test/r/type_ranges.result
+++ b/mysql-test/r/type_ranges.result
@@ -270,7 +270,7 @@ drop table t2;
create table t2 (primary key (auto)) select auto+1 as auto,1 as t1, 'a' as t2, repeat('a',256) as t3, binary repeat('b',256) as t4, repeat('a',4096) as t5, binary repeat('b',4096) as t6, '' as t7, binary '' as t8 from t1;
show full columns from t2;
Field Type Collation Null Key Default Extra Privileges Comment
-auto int(6) unsigned NULL NO PRI 0 #
+auto bigint(12) unsigned NULL NO PRI 0 #
t1 bigint(1) NULL NO 0 #
t2 varchar(1) latin1_swedish_ci NO #
t3 varchar(256) latin1_swedish_ci NO #
diff --git a/mysql-test/t/archive.test b/mysql-test/t/archive.test
index 9d25524da5f..51334fa62bc 100644
--- a/mysql-test/t/archive.test
+++ b/mysql-test/t/archive.test
@@ -1296,6 +1296,8 @@ select fld1,fld3 from t2 where fld1 like "25050_";
create table t3 engine=archive select * from t2;
select * from t3 where fld3='bonfire';
select count(*) from t3;
+# Clean up path in error message
+--replace_result $MYSQL_TEST_DIR . /var/master-data/ /
rename table t3 to t4;
select * from t4 where fld3='bonfire';
select count(*) from t4;