summaryrefslogtreecommitdiff
path: root/mysql-test/t/myisam.test
diff options
context:
space:
mode:
authoristruewing@chilla.local <>2007-01-23 22:27:03 +0100
committeristruewing@chilla.local <>2007-01-23 22:27:03 +0100
commit26153490ecbef415f56869c75a45268f1b6dafb5 (patch)
treee135639136cb784976cbb8052950d9938efdd422 /mysql-test/t/myisam.test
parent568106c297e8f4325ed89397a6224f6259118b28 (diff)
parent543bc0165f039f5b148c750483615705680ca5a3 (diff)
downloadmariadb-git-26153490ecbef415f56869c75a45268f1b6dafb5.tar.gz
Merge bk-internal.mysql.com:/home/bk/mysql-4.1-engines
into chilla.local:/home/mydev/mysql-4.1-bug24607
Diffstat (limited to 'mysql-test/t/myisam.test')
-rw-r--r--mysql-test/t/myisam.test35
1 files changed, 0 insertions, 35 deletions
diff --git a/mysql-test/t/myisam.test b/mysql-test/t/myisam.test
index d065d2e3ebf..0aeb49b0e99 100644
--- a/mysql-test/t/myisam.test
+++ b/mysql-test/t/myisam.test
@@ -854,41 +854,6 @@ DROP TABLE t1;
#
SET @@myisam_repair_threads=1;
SHOW VARIABLES LIKE 'myisam_repair%';
-# Bug#8706 - temporary table with data directory option fails
-#
-connect (session1,localhost,root,,);
-connect (session2,localhost,root,,);
-
-connection session1;
-disable_query_log;
-eval create temporary table t1 (a int) engine=myisam data directory="$MYSQL_TEST_DIR/var/log" select 9 a;
-enable_query_log;
-# If running test suite with a non standard tmp dir, the "show create table"
-# will print "DATA_DIRECTORY=". Use replace_result to mask it out
---replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
-show create table t1;
-
-connection session2;
-disable_query_log;
-eval create temporary table t1 (a int) engine=myisam data directory="$MYSQL_TEST_DIR/var/log" select 99 a;
-enable_query_log;
-# If running test suite with a non standard tmp dir, the "show create table"
-# will print "DATA_DIRECTORY=". Use replace_result to mask it out
---replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
-show create table t1;
-
-connection default;
-create table t1 (a int) engine=myisam select 42 a;
-
-connection session1;
-select * from t1;
-disconnect session1;
-connection session2;
-select * from t1;
-disconnect session2;
-connection default;
-select * from t1;
-drop table t1;
#
# BUG#21310 - Trees in SQL causing a "crashed" table with MyISAM storage