mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| -- source include/have_partition.inc
 | |
| --disable_warnings
 | |
| DROP TABLE IF EXISTS t1;
 | |
| --enable_warnings
 | |
| 
 | |
| #
 | |
| # Bug 21143: mysqld hang when error in number of subparts in
 | |
| #            REORGANIZE command
 | |
| #
 | |
| create table t1 (a int)
 | |
| partition by range (a)
 | |
| subpartition by key (a)
 | |
| (partition p0 values less than (10) (subpartition sp00, subpartition sp01),
 | |
|  partition p1 values less than (20) (subpartition sp10, subpartition sp11));
 | |
| 
 | |
| -- error ER_PARTITION_WRONG_NO_SUBPART_ERROR
 | |
| alter table t1 reorganize partition p0 into
 | |
| (partition p0 values less than (10) (subpartition sp00,
 | |
| subpartition sp01, subpartition sp02));
 | |
| drop table t1;
 | |
|  
 | |
| CREATE TABLE t1 (f_date DATE, f_varchar VARCHAR(30))
 | |
| PARTITION BY HASH(YEAR(f_date)) PARTITIONS 2;
 | |
| SHOW CREATE TABLE t1;
 | |
| 
 | |
| --replace_result $MYSQLTEST_VARDIR "hello"
 | |
| --exec ls $MYSQLTEST_VARDIR/master-data/test/t1#*
 | |
| --replace_result $MYSQLTEST_VARDIR "hello"
 | |
| --exec ls $MYSQLTEST_VARDIR/master-data/test/t1.*
 | |
| ALTER TABLE t1 COALESCE PARTITION 1;
 | |
| SHOW CREATE TABLE t1;
 | |
| --replace_result $MYSQLTEST_VARDIR "hello"
 | |
| --exec ls $MYSQLTEST_VARDIR/master-data/test/t1#*
 | |
| --replace_result $MYSQLTEST_VARDIR "hello"
 | |
| --exec ls $MYSQLTEST_VARDIR/master-data/test/t1.*
 | |
| drop table t1;
 | |
| #
 | |
| # Bug 20767: REORGANIZE partition crashes
 | |
| #
 | |
| create table t1 (a int)
 | |
| partition by list (a)
 | |
| subpartition by hash (a)
 | |
| (partition p11 values in (1,2),
 | |
|  partition p12 values in (3,4));
 | |
| 
 | |
| alter table t1 REORGANIZE partition p11, p12 INTO
 | |
| (partition p1 values in (1,2,3,4));
 | |
| 
 | |
| alter table t1 REORGANIZE partition p1 INTO
 | |
| (partition p11 values in (1,2),
 | |
|  partition p12 values in (3,4));
 | |
| 
 | |
| drop table t1;
 | 
