diff options
author | unknown <gkodinov/kgeorge@magare.gmz> | 2007-07-13 13:56:22 +0300 |
---|---|---|
committer | unknown <gkodinov/kgeorge@magare.gmz> | 2007-07-13 13:56:22 +0300 |
commit | b806ca22c6bcab929c0121d23f686a0484e64ed1 (patch) | |
tree | 8d7ddf8a50de7610d100b28fe398895f76642b43 /mysql-test/t/create_not_windows.test | |
parent | e08e63b192ac37b372b1cbb9014ef8180527e48a (diff) | |
download | mariadb-git-b806ca22c6bcab929c0121d23f686a0484e64ed1.tar.gz |
Bug 29325: moved the test from create_not_windows to symlink.
Diffstat (limited to 'mysql-test/t/create_not_windows.test')
-rw-r--r-- | mysql-test/t/create_not_windows.test | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/mysql-test/t/create_not_windows.test b/mysql-test/t/create_not_windows.test index c6547b1376b..7e51ff51024 100644 --- a/mysql-test/t/create_not_windows.test +++ b/mysql-test/t/create_not_windows.test @@ -18,42 +18,4 @@ show create table `about:text`; drop table `about:text`; -# -# Bug #29325: create table overwrites .MYD file of other table (datadir) -# - -CREATE DATABASE db1; -CREATE DATABASE db2; - -USE db2; ---disable_query_log -eval CREATE TABLE t1 (b INT) ENGINE MYISAM -DATA DIRECTORY = '$MYSQLTEST_VARDIR/master-data/db1/'; ---enable_query_log - -INSERT INTO db2.t1 VALUES (1); -SELECT * FROM db2.t1; -RESET QUERY CACHE; - -USE db1; - -#no warning from create table -SET SESSION keep_files_on_create = TRUE; ---disable_abort_on_error -CREATE TABLE t1 (a INT) ENGINE MYISAM; ---enable_abort_on_error - -CREATE TABLE t3 (a INT) Engine=MyISAM; -INSERT INTO t3 VALUES (1),(2),(3); -TRUNCATE TABLE t3; -SELECT * from t3; - -SET SESSION keep_files_on_create = DEFAULT; - -DROP TABLE db2.t1, db1.t3; -DROP DATABASE db1; -DROP DATABASE db2; -USE test; - - # End of 5.0 tests |