mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	mysql-test/t/disabled.def: Removed disabled test since it only affects Windows mysql-test/t/partition.test: Removed Windows from test since bug#19107 is known to hang test mysql-test/t/partition_mgm_err2.test: Removed Windows from test since bug#19107 is known to hang test
		
			
				
	
	
		
			32 lines
		
	
	
		
			884 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			884 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# Test of partitions that require symlinks
 | 
						|
#
 | 
						|
-- source include/have_partition.inc
 | 
						|
 | 
						|
#
 | 
						|
# This test is disabled on windows due to BUG#19107
 | 
						|
#
 | 
						|
-- source include/not_windows.inc
 | 
						|
-- 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=myisam
 | 
						|
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
 |