mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
12e5d5b6be
Bug#31610 Remove outdated and redundant tests: partition_02myisam partition_03ndb Bug#32405 testsuite parts: partition_char_myisam wrong content and cleanup of testsuite - remove/correct wrong comments - remove workarounds for fixed bugs - replace error numbers with error names - exclude subtests from execution which fail now because of new limitations for partitioning functions - remove code for the no more intended dual use fast test in regression tests/slow test in testsuite - analyze and fix problems with partition_char_innodb - fix problems caused by last change of error numbers - Introduce error name to error number mapping which makes maintenance after next error renumbering easier
174 lines
4.4 KiB
Text
174 lines
4.4 KiB
Text
create table t1 (a float not null, primary key(a)) engine='MYISAM'
|
|
partition by key (a) (
|
|
partition pa1 DATA DIRECTORY =
|
|
'/tmp' INDEX DIRECTORY =
|
|
'/tmp' max_rows=20 min_rows=2,
|
|
partition pa2 DATA DIRECTORY =
|
|
'/tmp' INDEX DIRECTORY =
|
|
'/tmp' max_rows=30 min_rows=3,
|
|
partition pa3 DATA DIRECTORY =
|
|
'/tmp' INDEX DIRECTORY =
|
|
'/tmp' max_rows=30 min_rows=4,
|
|
partition pa4 DATA DIRECTORY =
|
|
'/tmp' INDEX DIRECTORY =
|
|
'/tmp' max_rows=40 min_rows=2);
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` float NOT NULL,
|
|
PRIMARY KEY (`a`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50100 PARTITION BY KEY (a) (PARTITION pa1 MAX_ROWS = 20 MIN_ROWS = 2 DATA DIRECTORY = '/tmp' INDEX DIRECTORY = '/tmp' ENGINE = MyISAM, PARTITION pa2 MAX_ROWS = 30 MIN_ROWS = 3 DATA DIRECTORY = '/tmp' INDEX DIRECTORY = '/tmp' ENGINE = MyISAM, PARTITION pa3 MAX_ROWS = 30 MIN_ROWS = 4 DATA DIRECTORY = '/tmp' INDEX DIRECTORY = '/tmp' ENGINE = MyISAM, PARTITION pa4 MAX_ROWS = 40 MIN_ROWS = 2 DATA DIRECTORY = '/tmp' INDEX DIRECTORY = '/tmp' ENGINE = MyISAM) */
|
|
insert into t1 values (-3.402823466E+38), (3.402823466E+38), (-1.5), (-1), (0), (1), (1.5);
|
|
select * from t1;
|
|
a
|
|
-3.40282e+38
|
|
-1.5
|
|
-1
|
|
0
|
|
1
|
|
1.5
|
|
3.40282e+38
|
|
select * from t1 where a=1.5;
|
|
a
|
|
1.5
|
|
delete from t1 where a=1.5;
|
|
select * from t1;
|
|
a
|
|
-3.40282e+38
|
|
-1.5
|
|
-1
|
|
0
|
|
1
|
|
3.40282e+38
|
|
drop table t1;
|
|
create table t2 (a float not null, primary key(a)) engine='MYISAM'
|
|
partition by key (a) partitions 10;
|
|
show create table t2;
|
|
Table Create Table
|
|
t2 CREATE TABLE `t2` (
|
|
`a` float NOT NULL,
|
|
PRIMARY KEY (`a`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50100 PARTITION BY KEY (a) PARTITIONS 10 */
|
|
insert into t2 values (-3.402823466E+38), (-3.402823466E+37), (-123.456), (0), (1234546.789), (123.456), (1.5);
|
|
select * from t2;
|
|
a
|
|
-3.40282e+38
|
|
-3.40282e+37
|
|
-123.456
|
|
0
|
|
1.5
|
|
123.456
|
|
1.23455e+06
|
|
select * from t2 where a=123.456;
|
|
a
|
|
delete from t2 where a=123.456;
|
|
select * from t2;
|
|
a
|
|
-3.40282e+38
|
|
-3.40282e+37
|
|
-123.456
|
|
0
|
|
1.5
|
|
123.456
|
|
1.23455e+06
|
|
select * from t2 where a=1.5;
|
|
a
|
|
1.5
|
|
delete from t2 where a=1.5;
|
|
select * from t2;
|
|
a
|
|
-3.40282e+38
|
|
-3.40282e+37
|
|
-123.456
|
|
0
|
|
123.456
|
|
1.23455e+06
|
|
delete from t2;
|
|
16384*3 inserts;
|
|
select count(*) from t2;
|
|
count(*)
|
|
49152
|
|
drop table t2;
|
|
create table t1 (a double not null, primary key(a)) engine='MYISAM'
|
|
partition by key (a) (
|
|
partition pa1 DATA DIRECTORY =
|
|
'/tmp' INDEX DIRECTORY =
|
|
'/tmp' max_rows=20 min_rows=2,
|
|
partition pa2 DATA DIRECTORY =
|
|
'/tmp' INDEX DIRECTORY =
|
|
'/tmp' max_rows=30 min_rows=3,
|
|
partition pa3 DATA DIRECTORY =
|
|
'/tmp' INDEX DIRECTORY =
|
|
'/tmp' max_rows=30 min_rows=4,
|
|
partition pa4 DATA DIRECTORY =
|
|
'/tmp' INDEX DIRECTORY =
|
|
'/tmp' max_rows=40 min_rows=2);
|
|
show create table t1;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`a` double NOT NULL,
|
|
PRIMARY KEY (`a`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50100 PARTITION BY KEY (a) (PARTITION pa1 MAX_ROWS = 20 MIN_ROWS = 2 DATA DIRECTORY = '/tmp' INDEX DIRECTORY = '/tmp' ENGINE = MyISAM, PARTITION pa2 MAX_ROWS = 30 MIN_ROWS = 3 DATA DIRECTORY = '/tmp' INDEX DIRECTORY = '/tmp' ENGINE = MyISAM, PARTITION pa3 MAX_ROWS = 30 MIN_ROWS = 4 DATA DIRECTORY = '/tmp' INDEX DIRECTORY = '/tmp' ENGINE = MyISAM, PARTITION pa4 MAX_ROWS = 40 MIN_ROWS = 2 DATA DIRECTORY = '/tmp' INDEX DIRECTORY = '/tmp' ENGINE = MyISAM) */
|
|
insert into t1 values (-2.2250738585072014E+208), (-2.2250738585072014E-208), (-1.5), (-1), (0), (1.5), (1234.567), (2.2250738585072014E+208);
|
|
select * from t1;
|
|
a
|
|
-2.2250738585072e+208
|
|
-1.5
|
|
-1
|
|
-2.2250738585072e-208
|
|
0
|
|
1.5
|
|
1234.567
|
|
2.2250738585072e+208
|
|
select * from t1 where a=1.5;
|
|
a
|
|
1.5
|
|
delete from t1 where a=1.5;
|
|
select * from t1;
|
|
a
|
|
-2.2250738585072e+208
|
|
-1.5
|
|
-1
|
|
-2.2250738585072e-208
|
|
0
|
|
1234.567
|
|
2.2250738585072e+208
|
|
drop table t1;
|
|
create table t2 (a double not null, primary key(a)) engine='MYISAM'
|
|
partition by key (a) partitions 10;
|
|
show create table t2;
|
|
Table Create Table
|
|
t2 CREATE TABLE `t2` (
|
|
`a` double NOT NULL,
|
|
PRIMARY KEY (`a`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50100 PARTITION BY KEY (a) PARTITIONS 10 */
|
|
insert into t2 values (-2.2250738585072014E+208), (-2.2250738585072014E-208), (-1.5), (-1), (0), (1.5), (1234.567), (2.2250738585072014E+208);
|
|
select * from t2;
|
|
a
|
|
-2.2250738585072e+208
|
|
-1.5
|
|
-1
|
|
-2.2250738585072e-208
|
|
0
|
|
1.5
|
|
1234.567
|
|
2.2250738585072e+208
|
|
select * from t2 where a=1234.567;
|
|
a
|
|
1234.567
|
|
delete from t2 where a=1234.567;
|
|
select * from t2;
|
|
a
|
|
-2.2250738585072e+208
|
|
-1.5
|
|
-1
|
|
-2.2250738585072e-208
|
|
0
|
|
1.5
|
|
2.2250738585072e+208
|
|
delete from t2;
|
|
16384*3 inserts;
|
|
select count(*) from t2;
|
|
count(*)
|
|
49152
|
|
drop table t2;
|