diff options
author | unknown <tsmith/tim@siva.hindu.god> | 2006-12-14 16:51:12 -0700 |
---|---|---|
committer | unknown <tsmith/tim@siva.hindu.god> | 2006-12-14 16:51:12 -0700 |
commit | 8c98eea8fced482a661e6312d80f8dbf6a08a0ef (patch) | |
tree | 10b32a7bdd80103a62aca53e2e55f8431f9dc742 | |
parent | e034a115b714fba169c742ba0101e1755e499c43 (diff) | |
parent | 900f203ec25f20945df2e3e376ede8c5a8070581 (diff) | |
download | mariadb-git-8c98eea8fced482a661e6312d80f8dbf6a08a0ef.tar.gz |
Merge siva.hindu.god:/usr/home/tim/m/bk/41
into siva.hindu.god:/usr/home/tim/m/bk/50
mysql-test/r/myisam.result:
Manual merge.
mysql-test/r/symlink.result:
Manual merge.
mysql-test/t/myisam.test:
Manual merge.
mysql-test/t/symlink.test:
Manual merge.
-rw-r--r-- | mysql-test/r/myisam.result | 23 | ||||
-rw-r--r-- | mysql-test/r/symlink.result | 1 | ||||
-rw-r--r-- | mysql-test/t/myisam.test | 6 | ||||
-rw-r--r-- | mysql-test/t/symlink.test | 4 |
4 files changed, 11 insertions, 23 deletions
diff --git a/mysql-test/r/myisam.result b/mysql-test/r/myisam.result index 02bfe60e4a3..3ed2d10c9c9 100644 --- a/mysql-test/r/myisam.result +++ b/mysql-test/r/myisam.result @@ -922,27 +922,7 @@ SET @@myisam_repair_threads=1; SHOW VARIABLES LIKE 'myisam_repair%'; Variable_name Value myisam_repair_threads 1 -show create table t1; -Table Create Table -t1 CREATE TEMPORARY TABLE `t1` ( - `a` int(11) default NULL -) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQL_TEST_DIR/var/log/' -show create table t1; -Table Create Table -t1 CREATE TEMPORARY TABLE `t1` ( - `a` int(11) default NULL -) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQL_TEST_DIR/var/log/' -create table t1 (a int) engine=myisam select 42 a; -select * from t1; -a -9 -select * from t1; -a -99 -select * from t1; -a -42 -drop table t1; +End of 4.1 tests set storage_engine=MyISAM; drop table if exists t1,t2,t3; --- Testing varchar --- @@ -1629,3 +1609,4 @@ create table t3 (c1 int) engine=myisam pack_keys=default; create table t4 (c1 int) engine=myisam pack_keys=2; ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '2' at line 1 drop table t1, t2, t3; +End of 5.0 tests diff --git a/mysql-test/r/symlink.result b/mysql-test/r/symlink.result index c64d34aa80c..a85f14782ef 100644 --- a/mysql-test/r/symlink.result +++ b/mysql-test/r/symlink.result @@ -132,3 +132,4 @@ select * from t1; a 42 drop table t1; +End of 4.1 tests diff --git a/mysql-test/t/myisam.test b/mysql-test/t/myisam.test index 90b71a30c27..2b498704512 100644 --- a/mysql-test/t/myisam.test +++ b/mysql-test/t/myisam.test @@ -846,6 +846,10 @@ DROP TABLE t1; # SET @@myisam_repair_threads=1; SHOW VARIABLES LIKE 'myisam_repair%'; + +--echo End of 4.1 tests + + # Test varchar # @@ -970,4 +974,4 @@ create table t3 (c1 int) engine=myisam pack_keys=default; create table t4 (c1 int) engine=myisam pack_keys=2; drop table t1, t2, t3; -# End of 4.1 tests +--echo End of 5.0 tests diff --git a/mysql-test/t/symlink.test b/mysql-test/t/symlink.test index 94890eab93d..7924f00a9c8 100644 --- a/mysql-test/t/symlink.test +++ b/mysql-test/t/symlink.test @@ -176,4 +176,6 @@ connection default; select * from t1; drop table t1; -# End of 4.1 tests +--echo End of 4.1 tests + +--echo End of 5.0 tests |