| Server IP : 45.40.142.9 / Your IP : 216.73.216.250 Web Server : Apache System : Linux s45-40-142-9.secureserver.net 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : bayspec ( 506) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/mysql-test/t/ |
Upload File : |
# # Test of partitions that require symlinks # --source include/have_partition.inc --source include/have_symlink.inc # # This test is disabled on windows due to BUG#19107 # --source include/not_windows.inc # # BUG: 14354 Partitions: data directory clause fails # --error 0,1 --remove_files_wildcard $MYSQLTEST_VARDIR/tmp/bug14354 --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=myisam DATA DIRECTORY="$MYSQLTEST_VARDIR/tmp/bug14354" INDEX DIRECTORY="$MYSQLTEST_VARDIR/tmp/bug14354"); enable_query_log; INSERT INTO t1 VALUES (15); --file_exists $MYSQLTEST_VARDIR/tmp/bug14354/t1#P#p1.MYD --file_exists $MYSQLTEST_VARDIR/tmp/bug14354/t1#P#p1.MYI DROP TABLE t1; --remove_files_wildcard $MYSQLTEST_VARDIR/tmp/bug14354 --rmdir $MYSQLTEST_VARDIR/tmp/bug14354