mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
d25c405dc7
BitKeeper/etc/ignore: added storage/ndb/src/common/util/testBitmask.cpp mysql-test/mysql-test-run.sh: Add libmysql_r/.libs to path for shared libraries. (Needed for mysqlimport) mysql-test/r/ctype_cp932_notembedded.result: After merge fix mysql-test/r/func_system.result: Version number on embedded server can be longer than 40 mysql-test/r/partition_mgm_err.result: Move tests that require symlinks to partion_mgm_err2.test mysql-test/r/query_cache.result: Fix possible errors from previous tests mysql-test/t/ctype_cp932_notembedded.test: After merge fix mysql-test/t/func_system.test: Version number on embedded server can be longer than 40 mysql-test/t/partition_mgm_err.test: Move tests that require symlinks to partion_mgm_err2.test mysql-test/t/query_cache.test: Fix possible errors from previous tests mysys/my_symlink2.c: More debugging sql/event.cc: Code cleanup sql/event_executor.cc: Ensure that event mutexes are properly cleared up sql/mysqld.cc: Ensure that event mutexes are properly cleared up mysql-test/r/partition_mgm_err2.result: New BitKeeper file ``mysql-test/r/partition_mgm_err2.result'' mysql-test/t/partition_mgm_err2.test: New BitKeeper file ``mysql-test/t/partition_mgm_err2.test''
25 lines
756 B
Text
25 lines
756 B
Text
#
|
|
# Test of partitions that require symlinks
|
|
#
|
|
|
|
-- require r/have_symlink.require
|
|
disable_query_log;
|
|
show variables like "have_symlink";
|
|
enable_query_log;
|
|
|
|
#
|
|
# BUG: 14354 Partitions: data directory clause fails
|
|
#
|
|
--system rm -rf $MYSQLTEST_VARDIR/tmp/bug14354
|
|
--system mkdir $MYSQLTEST_VARDIR/tmp/bug14354
|
|
disable_query_log;
|
|
eval CREATE TABLE t1 (id int) PARTITION BY RANGE(id) (
|
|
PARTITION p1 VALUES LESS THAN (20) ENGINE=myiasm
|
|
DATA DIRECTORY="$MYSQLTEST_VARDIR/tmp/bug14354"
|
|
INDEX DIRECTORY="$MYSQLTEST_VARDIR/tmp/bug14354");
|
|
enable_query_log;
|
|
INSERT INTO t1 VALUES (15);
|
|
--system test -f $MYSQLTEST_VARDIR/tmp/bug14354/t1#P#p1.MYD
|
|
--system test -f $MYSQLTEST_VARDIR/tmp/bug14354/t1#P#p1.MYI
|
|
DROP TABLE t1;
|
|
--system rm -rf $MYSQLTEST_VARDIR/tmp/bug14354
|