summaryrefslogtreecommitdiff
path: root/mysql-test/r/myisam.result
diff options
context:
space:
mode:
authorunknown <tsmith/tim@siva.hindu.god>2006-12-14 17:03:44 -0700
committerunknown <tsmith/tim@siva.hindu.god>2006-12-14 17:03:44 -0700
commiteedbe37a704b6fe11f9329fed71c550e5861f0ed (patch)
tree9bfa927345a25340450ca70ba9eb52f601842a43 /mysql-test/r/myisam.result
parent33ab28e9ad4e663f4c801064ca80648cdd6e79c9 (diff)
parent3a5064205f12528b67b98ebc153bde43de6b6583 (diff)
downloadmariadb-git-eedbe37a704b6fe11f9329fed71c550e5861f0ed.tar.gz
Merge siva.hindu.god:/usr/home/tim/m/bk/50
into siva.hindu.god:/usr/home/tim/m/bk/51 mysql-test/r/symlink.result: Auto merged mysql-test/t/symlink.test: Auto merged scripts/mysqld_safe.sh: Auto merged mysql-test/r/myisam.result: Manual merge mysql-test/t/myisam.test: Manual merge
Diffstat (limited to 'mysql-test/r/myisam.result')
-rw-r--r--mysql-test/r/myisam.result23
1 files changed, 1 insertions, 22 deletions
diff --git a/mysql-test/r/myisam.result b/mysql-test/r/myisam.result
index 635f4b81eab..c2b0202053b 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 ---
@@ -1611,7 +1591,6 @@ show keys from t1;
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
t1 1 a 1 a A 8 NULL NULL YES BTREE
drop table t1;
-End of 4.1 tests
create table t1 (c1 int) engine=myisam pack_keys=0;
create table t2 (c1 int) engine=myisam pack_keys=1;
create table t3 (c1 int) engine=myisam pack_keys=default;