|
|||||||||||
|
bk commit into 5.1 tree (mleich:1.2576) BUG#31481
From: <mleich(at)mysql.com>
Date: Wed Oct 10 2007 - 16:03:16 EDT
ChangeSet@1.2576, 2007-10-10 22:03:10+02:00, mleich@four.local.lan +19 -0 Combined fix for
Bug#31481 test suite parts: Many tests fail because of changed server error codes
Bug#31243 Test "partition_basic_myisam" truncates path names
+ minor cleanup
mysql-test/suite/parts/inc/partition.pre@1.4, 2007-10-10 22:03:06+02:00, mleich@four.local.lan +9 -9
mysql-test/suite/parts/inc/partition_alter_1.inc@1.6, 2007-10-10 22:03:06+02:00, mleich@four.local.lan +11 -9 Adjust expected server error codes mysql-test/suite/parts/inc/partition_check.inc@1.6, 2007-10-10 22:03:06+02:00, mleich@four.local.lan +12 -8 Adjust expected server error codes mysql-test/suite/parts/inc/partition_syntax.inc@1.6, 2007-10-10 22:03:06+02:00, mleich@four.local.lan +19 -19 Minor cleanup
mysql-test/suite/parts/inc/partition_syntax_1.inc@1.6, 2007-10-10 22:03:06+02:00, mleich@four.local.lan +15 -13 Adjust expected server error codes mysql-test/suite/parts/r/partition_alter1_innodb.result@1.3, 2007-10-10 22:03:06+02:00, mleich@four.local.lan +1 -4 Updated results mysql-test/suite/parts/r/partition_alter1_myisam.result@1.3, 2007-10-10 22:03:06+02:00, mleich@four.local.lan +1 -4 Updated results mysql-test/suite/parts/r/partition_alter2_innodb.result@1.3, 2007-10-10 22:03:06+02:00, mleich@four.local.lan +1 -4 Updated results mysql-test/suite/parts/r/partition_alter2_myisam.result@1.3, 2007-10-10 22:03:07+02:00, mleich@four.local.lan +1 -4 Updated results mysql-test/suite/parts/r/partition_alter3_innodb.result@1.4, 2007-10-10 22:03:07+02:00, mleich@four.local.lan +1 -4 Updated results mysql-test/suite/parts/r/partition_alter3_myisam.result@1.4, 2007-10-10 22:03:07+02:00, mleich@four.local.lan +1 -4 Updated results mysql-test/suite/parts/r/partition_alter4_innodb.result@1.3, 2007-10-10 22:03:07+02:00, mleich@four.local.lan +1 -4 Updated results mysql-test/suite/parts/r/partition_alter4_myisam.result@1.3, 2007-10-10 22:03:07+02:00, mleich@four.local.lan +1 -4 Updated results mysql-test/suite/parts/r/partition_basic_innodb.result@1.4, 2007-10-10 22:03:07+02:00, mleich@four.local.lan +1 -4 Updated results mysql-test/suite/parts/r/partition_basic_myisam.result@1.4, 2007-10-10 22:03:07+02:00, mleich@four.local.lan +1 -4 Updated results mysql-test/suite/parts/r/partition_engine_innodb.result@1.3, 2007-10-10 22:03:07+02:00, mleich@four.local.lan +1 -4 Updated results mysql-test/suite/parts/r/partition_engine_myisam.result@1.3, 2007-10-10 22:03:07+02:00, mleich@four.local.lan +1 -4 Updated results mysql-test/suite/parts/r/partition_syntax_innodb.result@1.4, 2007-10-10 22:03:07+02:00, mleich@four.local.lan +1 -4 Updated results mysql-test/suite/parts/r/partition_syntax_myisam.result@1.4, 2007-10-10 22:03:07+02:00, mleich@four.local.lan +1 -4 Updated results diff -Nrup a/mysql-test/suite/parts/inc/partition.pre b/mysql-test/suite/parts/inc/partition.pre --- a/mysql-test/suite/parts/inc/partition.pre 2007-04-30 15:12:31 +02:00 +++ b/mysql-test/suite/parts/inc/partition.pre 2007-10-10 22:03:06 +02:00
# Set the session storage engine
---echo # The expected results suffer from the following bugs ---echo # harmless #17455, #19305 ---echo # which cannot be suppressed because of technical reasons. --echo #------------------------------------------------------------------------ # Attention: Only bugs appearing in all storage engines should be mentioned above. # The top level test wrapper (example: t/partition_basic_ndb.test) @@ -164,7 +164,7 @@ DROP TABLE IF EXISTS t0_definition; CREATE TABLE t0_definition ( state CHAR(3), create_command VARBINARY(5000), -file_list VARBINARY(5000), +file_list VARBINARY(10000), PRIMARY KEY (state) ) ENGINE = MEMORY; diff -Nrup a/mysql-test/suite/parts/inc/partition_alter_1.inc b/mysql-test/suite/parts/inc/partition_alter_1.inc --- a/mysql-test/suite/parts/inc/partition_alter_1.inc 2007-08-27 22:02:08 +02:00 +++ b/mysql-test/suite/parts/inc/partition_alter_1.inc 2007-10-10 22:03:06 +02:00 eval $insert_first_half; # Possible/Expected return codes for ALTER TABLE ... # 0 # 1030: ER_GET_ERRNO -# 1500: ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF -# 1504: ER_DROP_PARTITION_NON_EXISTENT +# 1502: ER_UNIQUE_KEY_NEED_ALL_FIELDS_IN_PF +# 1506: ER_DROP_PARTITION_NON_EXISTENT --disable_abort_on_error eval $alter; --enable_abort_on_error @@ -48,11 +50,11 @@ if ($no_debug) } eval SET @my_errno = $mysql_errno;
let $run_test= `SELECT @my_errno = 0`;
-let $unexpected_error= `SELECT @my_errno NOT IN (0,1030,1500,1504)`;
+let $unexpected_error= `SELECT @my_errno NOT IN (0,1030,1502,1506)`;
if ($unexpected_error)
{
--echo # The last command got an unexepected error response.
- --echo # Expected/handled SQL codes are 0,1030,1500,1504
+ --echo # Expected/handled SQL codes are 0,1030,1502,1506
SELECT '# SQL code we got was: ' AS "", @my_errno AS "";
--echo # Sorry, have to abort.
exit; diff -Nrup a/mysql-test/suite/parts/inc/partition_check.inc b/mysql-test/suite/parts/inc/partition_check.inc --- a/mysql-test/suite/parts/inc/partition_check.inc 2007-08-27 22:02:08 +02:00 +++ b/mysql-test/suite/parts/inc/partition_check.inc 2007-10-10 22:03:06 +02:00 @@ -495,7 +499,7 @@ WHERE f_charbig = '#SINGLE#' AND f_int1 # 4.7 Insert one record with such a big value for f_int1, so that in case # - f_int1 is used within the partitioning algorithm # - we use range partitioning -# we get error ER_NO_PARTITION_FOR_GIVEN_VALUE (1523) +# we get error ER_NO_PARTITION_FOR_GIVEN_VALUE (1525) # "Table has no partition for value ...." # or ER_SAME_NAME_PARTITION (1514)--disable_abort_on_error @@ -506,11 +510,11 @@ if ($no_debug) --disable_query_log } eval SET @my_errno = $mysql_errno;
-let $unexpected_error= `SELECT @my_errno NOT IN (0,1514,1523)`;
+let $unexpected_error= `SELECT @my_errno NOT IN (0,1514,1525)`;
if ($unexpected_error)
{
--echo # The last command got an unexepected error response.
- --echo # Expected/handled SQL codes are 0,1514,1523
+ --echo # Expected/handled SQL codes are 0,1514,1525
SELECT '# SQL code we got was: ' AS "", @my_errno AS "";
--echo # Sorry, have to abort.
exit; diff -Nrup a/mysql-test/suite/parts/inc/partition_syntax.inc b/mysql-test/suite/parts/inc/partition_syntax.inc --- a/mysql-test/suite/parts/inc/partition_syntax.inc 2007-08-27 20:09:09 +02:00 +++ b/mysql-test/suite/parts/inc/partition_syntax.inc 2007-10-10 22:03:06 +02:00---error 1064 +--error ER_PARSE_ERROR eval CREATE TABLE t1 ( $column_list, PRIMARY KEY (f_int1) @@ -324,7 +324,7 @@ PARTITION BY RANGE(f_int1) --echo #------------------------------------------------------------------------ --echo # 3.5.1 NULL in RANGE partitioning clause --echo # 3.5.1.1 VALUE LESS THAN (NULL) is not allowed---error 1064 +--error ER_PARSE_ERROR eval CREATE TABLE t1 ( $column_list ) @@ -332,7 +332,7 @@ PARTITION BY RANGE(f_int1) ( PARTITION part1 VALUES LESS THAN (NULL), PARTITION part2 VALUES LESS THAN (1000)); --echo # 3.5.1.2 VALUE LESS THAN (NULL) is not allowed ---error 1064 +--error ER_PARSE_ERROR eval CREATE TABLE t1 ( $column_list ) @@ -456,17 +456,17 @@ let $part3_Y= `SELECT @AUX`; eval $part01 $column_list $part02 $part1_N $part2_N $part3_N ; DROP TABLE t1; # Bug#15407 Partitions: crash if subpartition ---error 1064 +--error ER_PARSE_ERROR eval $part01 $column_list $part02 $part1_N $part2_N $part3_Y ; ---error 1064 +--error ER_PARSE_ERROR eval $part01 $column_list $part02 $part1_N $part2_Y $part3_N ; ---error 1064 +--error ER_PARSE_ERROR eval $part01 $column_list $part02 $part1_N $part2_Y $part3_Y ; ---error 1064 +--error ER_PARSE_ERROR eval $part01 $column_list $part02 $part1_Y $part2_N $part3_N ; ---error 1064 +--error ER_PARSE_ERROR eval $part01 $column_list $part02 $part1_Y $part2_N $part3_Y ; ---error 1064 +--error ER_PARSE_ERROR eval $part01 $column_list $part02 $part1_Y $part2_Y $part3_N ; eval $part01 $column_list $part02 $part1_Y $part2_Y $part3_Y ; --source suite/parts/inc/partition_layout_check1.inc @@ -640,12 +640,12 @@ let $part_number= "GARBAGE";
--echo # 4.2.6 (negative) partition/subpartition numbers per @variables
SET @aux = 5;
--echo # already checked above --echo # 4.3.3 (negative) number of partitions/subpartitions --echo # > number of named partitions/subpartitions---error 1064 +--error ER_PARSE_ERROR eval CREATE TABLE t1 ( $column_list ) PARTITION BY HASH(f_int1) PARTITIONS 2 ( PARTITION part1 ) ; # Wrong number of named subpartitions in first partition ---error 1064 +--error ER_PARSE_ERROR eval CREATE TABLE t1 ( $column_list ) @@ -703,7 +703,7 @@ SUBPARTITION BY HASH(f_int1) SUBPARTITIO
(SUBPARTITION subpart21, SUBPARTITION subpart22)
);
(SUBPARTITION subpart31, SUBPARTITION subpart32)
);
(SUBPARTITION subpart21 )
);
--echo # 4.3.4 (negative) number of partitions < number of named partitions ---error 1064 +--error ER_PARSE_ERROR eval CREATE TABLE t1 ( $column_list ) PARTITION BY HASH(f_int1) PARTITIONS 1 ( PARTITION part1, PARTITION part2 ) ; # Wrong number of named subpartitions in first partition ---error 1064 +--error ER_PARSE_ERROR eval CREATE TABLE t1 ( $column_list ) @@ -747,7 +747,7 @@ SUBPARTITION BY HASH(f_int1) SUBPARTITIO
(SUBPARTITION subpart21, SUBPARTITION subpart22)
);
(SUBPARTITION subpart31, SUBPARTITION subpart32)
);
diff -Nrup a/mysql-test/suite/parts/inc/partition_syntax_1.inc b/mysql-test/suite/parts/inc/partition_syntax_1.inc --- a/mysql-test/suite/parts/inc/partition_syntax_1.inc 2007-08-27 22:02:08 +02:00 +++ b/mysql-test/suite/parts/inc/partition_syntax_1.inc 2007-10-10 22:03:06 +02:00
--disable_abort_on_error
# 0 # 1064 ER_PARSE_ERROR # Reason: assign -1 partitions -# 1496 ER_TOO_MANY_PARTITIONS_ERROR -# 1501 ER_NO_PARTS_ERROR -let $unexpected_error= `SELECT @my_errno NOT IN (0,1064,1496,1501)`; +# 1498 ER_TOO_MANY_PARTITIONS_ERROR +# 1503 ER_NO_PARTS_ERROR +let $unexpected_error= `SELECT @my_errno NOT IN (0,1064,1498,1503)`;if ($unexpected_error) {
--echo # The last command got an unexepected error response.
- --echo # Expected/handled SQL codes are 0,1064,1496,1501
+ --echo # Expected/handled SQL codes are 0,1064,1498,1503
SELECT '# SQL code we got was: ' AS "", @my_errno AS "";
--echo # Sorry, have to abort.
exit; @@ -68,13 +70,13 @@ let $run= `SELECT @my_errno = 0`; # 0 # 1064 ER_PARSE_ERROR # Reason: assign -1 partitions -# 1496 ER_TOO_MANY_PARTITIONS_ERROR -# 1501 ER_NO_PARTS_ERROR -let $unexpected_error= `SELECT @my_errno NOT IN (0,1064,1496,1501)`; +# 1498 ER_TOO_MANY_PARTITIONS_ERROR +# 1503 ER_NO_PARTS_ERROR +let $unexpected_error= `SELECT @my_errno NOT IN (0,1064,1498,1503)`;if ($unexpected_error) {
--echo # The last command got an unexepected error response.
- --echo # Expected/handled SQL codes are 0,1064,1496,1501
+ --echo # Expected/handled SQL codes are 0,1064,1498,1503
SELECT '# SQL code we got was: ' AS "", @my_errno AS "";
--echo # Sorry, have to abort.
exit; diff -Nrup a/mysql-test/suite/parts/r/partition_alter1_innodb.result b/mysql-test/suite/parts/r/partition_alter1_innodb.result --- a/mysql-test/suite/parts/r/partition_alter1_innodb.result 2007-04-30 15:12:05 +02:00 +++ b/mysql-test/suite/parts/r/partition_alter1_innodb.result 2007-10-10 22:03:06 +02:00 @@ -4,9 +4,6 @@ SET @@session.storage_engine = 'InnoDB'; #------------------------------------------------------------------------ # There are several testcases disabled because of the open bugs # #15890 -# The expected results suffer from the following bugs -# harmless #17455, #19305 -# which cannot be suppressed because of technical reasons. #------------------------------------------------------------------------ #------------------------------------------------------------------------ @@ -31,7 +28,7 @@ DROP TABLE IF EXISTS t0_definition; CREATE TABLE t0_definition ( state CHAR(3), create_command VARBINARY(5000), -file_list VARBINARY(5000), +file_list VARBINARY(10000), PRIMARY KEY (state) ) ENGINE = MEMORY; DROP TABLE IF EXISTS t0_aux; diff -Nrup a/mysql-test/suite/parts/r/partition_alter1_myisam.result b/mysql-test/suite/parts/r/partition_alter1_myisam.result --- a/mysql-test/suite/parts/r/partition_alter1_myisam.result 2007-04-30 15:12:05 +02:00 +++ b/mysql-test/suite/parts/r/partition_alter1_myisam.result 2007-10-10 22:03:06 +02:00 @@ -4,9 +4,6 @@ SET @@session.storage_engine = 'MyISAM'; #------------------------------------------------------------------------ # There are several testcases disabled because of the open bugs # #15890 -# The expected results suffer from the following bugs -# harmless #17455, #19305 -# which cannot be suppressed because of technical reasons. #------------------------------------------------------------------------ #------------------------------------------------------------------------ @@ -31,7 +28,7 @@ DROP TABLE IF EXISTS t0_definition; CREATE TABLE t0_definition ( state CHAR(3), create_command VARBINARY(5000), -file_list VARBINARY(5000), +file_list VARBINARY(10000), PRIMARY KEY (state) ) ENGINE = MEMORY; DROP TABLE IF EXISTS t0_aux; diff -Nrup a/mysql-test/suite/parts/r/partition_alter2_innodb.result b/mysql-test/suite/parts/r/partition_alter2_innodb.result --- a/mysql-test/suite/parts/r/partition_alter2_innodb.result 2007-04-30 15:12:05 +02:00 +++ b/mysql-test/suite/parts/r/partition_alter2_innodb.result 2007-10-10 22:03:06 +02:00 @@ -4,9 +4,6 @@ SET @@session.storage_engine = 'InnoDB'; #------------------------------------------------------------------------ # There are several testcases disabled because of the open bugs # #15890 -# The expected results suffer from the following bugs -# harmless #17455, #19305 -# which cannot be suppressed because of technical reasons. #------------------------------------------------------------------------ #------------------------------------------------------------------------ @@ -31,7 +28,7 @@ DROP TABLE IF EXISTS t0_definition; CREATE TABLE t0_definition ( state CHAR(3), create_command VARBINARY(5000), -file_list VARBINARY(5000), +file_list VARBINARY(10000), PRIMARY KEY (state) ) ENGINE = MEMORY; DROP TABLE IF EXISTS t0_aux; diff -Nrup a/mysql-test/suite/parts/r/partition_alter2_myisam.result b/mysql-test/suite/parts/r/partition_alter2_myisam.result --- a/mysql-test/suite/parts/r/partition_alter2_myisam.result 2007-04-30 15:12:05 +02:00 +++ b/mysql-test/suite/parts/r/partition_alter2_myisam.result 2007-10-10 22:03:07 +02:00 @@ -4,9 +4,6 @@ SET @@session.storage_engine = 'MyISAM'; #------------------------------------------------------------------------ # There are several testcases disabled because of the open bugs # #15890 -# The expected results suffer from the following bugs -# harmless #17455, #19305 -# which cannot be suppressed because of technical reasons. #------------------------------------------------------------------------ #------------------------------------------------------------------------ @@ -31,7 +28,7 @@ DROP TABLE IF EXISTS t0_definition; CREATE TABLE t0_definition ( state CHAR(3), create_command VARBINARY(5000), -file_list VARBINARY(5000), +file_list VARBINARY(10000), PRIMARY KEY (state) ) ENGINE = MEMORY; DROP TABLE IF EXISTS t0_aux; diff -Nrup a/mysql-test/suite/parts/r/partition_alter3_innodb.result b/mysql-test/suite/parts/r/partition_alter3_innodb.result --- a/mysql-test/suite/parts/r/partition_alter3_innodb.result 2007-08-27 20:09:10 +02:00 +++ b/mysql-test/suite/parts/r/partition_alter3_innodb.result 2007-10-10 22:03:07 +02:00 @@ -4,9 +4,6 @@ SET @@session.storage_engine = 'InnoDB'; #------------------------------------------------------------------------ # There are several testcases disabled because of the open bugs # #15890 -# The expected results suffer from the following bugs -# harmless #17455, #19305 -# which cannot be suppressed because of technical reasons. #------------------------------------------------------------------------ #------------------------------------------------------------------------ @@ -31,7 +28,7 @@ DROP TABLE IF EXISTS t0_definition; CREATE TABLE t0_definition ( state CHAR(3), create_command VARBINARY(5000), -file_list VARBINARY(5000), +file_list VARBINARY(10000), PRIMARY KEY (state) ) ENGINE = MEMORY; DROP TABLE IF EXISTS t0_aux; diff -Nrup a/mysql-test/suite/parts/r/partition_alter3_myisam.result b/mysql-test/suite/parts/r/partition_alter3_myisam.result --- a/mysql-test/suite/parts/r/partition_alter3_myisam.result 2007-08-27 20:09:10 +02:00 +++ b/mysql-test/suite/parts/r/partition_alter3_myisam.result 2007-10-10 22:03:07 +02:00 @@ -4,9 +4,6 @@ SET @@session.storage_engine = 'MyISAM'; #------------------------------------------------------------------------ # There are several testcases disabled because of the open bugs # #15890 -# The expected results suffer from the following bugs -# harmless #17455, #19305 -# which cannot be suppressed because of technical reasons. #------------------------------------------------------------------------ #------------------------------------------------------------------------ @@ -31,7 +28,7 @@ DROP TABLE IF EXISTS t0_definition; CREATE TABLE t0_definition ( state CHAR(3), create_command VARBINARY(5000), -file_list VARBINARY(5000), +file_list VARBINARY(10000), PRIMARY KEY (state) ) ENGINE = MEMORY; DROP TABLE IF EXISTS t0_aux; diff -Nrup a/mysql-test/suite/parts/r/partition_alter4_innodb.result b/mysql-test/suite/parts/r/partition_alter4_innodb.result --- a/mysql-test/suite/parts/r/partition_alter4_innodb.result 2007-04-30 15:12:05 +02:00 +++ b/mysql-test/suite/parts/r/partition_alter4_innodb.result 2007-10-10 22:03:07 +02:00 @@ -4,9 +4,6 @@ SET @@session.storage_engine = 'InnoDB'; #------------------------------------------------------------------------ # There are several testcases disabled because of the open bugs # #15890 -# The expected results suffer from the following bugs -# harmless #17455, #19305 -# which cannot be suppressed because of technical reasons. #------------------------------------------------------------------------ #------------------------------------------------------------------------ @@ -31,7 +28,7 @@ DROP TABLE IF EXISTS t0_definition; CREATE TABLE t0_definition ( state CHAR(3), create_command VARBINARY(5000), -file_list VARBINARY(5000), +file_list VARBINARY(10000), PRIMARY KEY (state) ) ENGINE = MEMORY; DROP TABLE IF EXISTS t0_aux; diff -Nrup a/mysql-test/suite/parts/r/partition_alter4_myisam.result b/mysql-test/suite/parts/r/partition_alter4_myisam.result --- a/mysql-test/suite/parts/r/partition_alter4_myisam.result 2007-04-30 15:12:05 +02:00 +++ b/mysql-test/suite/parts/r/partition_alter4_myisam.result 2007-10-10 22:03:07 +02:00 @@ -4,9 +4,6 @@ SET @@session.storage_engine = 'MyISAM'; #------------------------------------------------------------------------ # There are several testcases disabled because of the open bugs # #15890 -# The expected results suffer from the following bugs -# harmless #17455, #19305 -# which cannot be suppressed because of technical reasons. #------------------------------------------------------------------------ #------------------------------------------------------------------------ @@ -31,7 +28,7 @@ DROP TABLE IF EXISTS t0_definition; CREATE TABLE t0_definition ( state CHAR(3), create_command VARBINARY(5000), -file_list VARBINARY(5000), +file_list VARBINARY(10000), PRIMARY KEY (state) ) ENGINE = MEMORY; DROP TABLE IF EXISTS t0_aux; diff -Nrup a/mysql-test/suite/parts/r/partition_basic_innodb.result b/mysql-test/suite/parts/r/partition_basic_innodb.result --- a/mysql-test/suite/parts/r/partition_basic_innodb.result 2007-08-27 20:09:10 +02:00 +++ b/mysql-test/suite/parts/r/partition_basic_innodb.result 2007-10-10 22:03:07 +02:00 @@ -4,9 +4,6 @@ SET @@session.storage_engine = 'InnoDB'; #------------------------------------------------------------------------ # There are several testcases disabled because of the open bugs # #15890 -# The expected results suffer from the following bugs -# harmless #17455, #19305 -# which cannot be suppressed because of technical reasons. #------------------------------------------------------------------------ #------------------------------------------------------------------------ @@ -31,7 +28,7 @@ DROP TABLE IF EXISTS t0_definition; CREATE TABLE t0_definition ( state CHAR(3), create_command VARBINARY(5000), -file_list VARBINARY(5000), +file_list VARBINARY(10000), PRIMARY KEY (state) ) ENGINE = MEMORY; DROP TABLE IF EXISTS t0_aux; diff -Nrup a/mysql-test/suite/parts/r/partition_basic_myisam.result b/mysql-test/suite/parts/r/partition_basic_myisam.result --- a/mysql-test/suite/parts/r/partition_basic_myisam.result 2007-08-27 20:09:10 +02:00 +++ b/mysql-test/suite/parts/r/partition_basic_myisam.result 2007-10-10 22:03:07 +02:00 @@ -4,9 +4,6 @@ SET @@session.storage_engine = 'MyISAM'; #------------------------------------------------------------------------ # There are several testcases disabled because of the open bugs # #15890 -# The expected results suffer from the following bugs -# harmless #17455, #19305 -# which cannot be suppressed because of technical reasons. #------------------------------------------------------------------------ #------------------------------------------------------------------------ @@ -31,7 +28,7 @@ DROP TABLE IF EXISTS t0_definition; CREATE TABLE t0_definition ( state CHAR(3), create_command VARBINARY(5000), -file_list VARBINARY(5000), +file_list VARBINARY(10000), PRIMARY KEY (state) ) ENGINE = MEMORY; DROP TABLE IF EXISTS t0_aux; diff -Nrup a/mysql-test/suite/parts/r/partition_engine_innodb.result b/mysql-test/suite/parts/r/partition_engine_innodb.result --- a/mysql-test/suite/parts/r/partition_engine_innodb.result 2007-04-30 15:12:05 +02:00 +++ b/mysql-test/suite/parts/r/partition_engine_innodb.result 2007-10-10 22:03:07 +02:00 @@ -4,9 +4,6 @@ SET @@session.storage_engine = 'InnoDB'; #------------------------------------------------------------------------ # There are several testcases disabled because of the open bugs # #15890 -# The expected results suffer from the following bugs -# harmless #17455, #19305 -# which cannot be suppressed because of technical reasons. #------------------------------------------------------------------------ #------------------------------------------------------------------------ @@ -31,7 +28,7 @@ DROP TABLE IF EXISTS t0_definition; CREATE TABLE t0_definition ( state CHAR(3), create_command VARBINARY(5000), -file_list VARBINARY(5000), +file_list VARBINARY(10000), PRIMARY KEY (state) ) ENGINE = MEMORY; DROP TABLE IF EXISTS t0_aux; diff -Nrup a/mysql-test/suite/parts/r/partition_engine_myisam.result b/mysql-test/suite/parts/r/partition_engine_myisam.result --- a/mysql-test/suite/parts/r/partition_engine_myisam.result 2007-04-30 15:12:05 +02:00 +++ b/mysql-test/suite/parts/r/partition_engine_myisam.result 2007-10-10 22:03:07 +02:00 @@ -4,9 +4,6 @@ SET @@session.storage_engine = 'MyISAM'; #------------------------------------------------------------------------ # There are several testcases disabled because of the open bugs # #15890 -# The expected results suffer from the following bugs -# harmless #17455, #19305 -# which cannot be suppressed because of technical reasons. #------------------------------------------------------------------------ #------------------------------------------------------------------------ @@ -31,7 +28,7 @@ DROP TABLE IF EXISTS t0_definition; CREATE TABLE t0_definition ( state CHAR(3), create_command VARBINARY(5000), -file_list VARBINARY(5000), +file_list VARBINARY(10000), PRIMARY KEY (state) ) ENGINE = MEMORY; DROP TABLE IF EXISTS t0_aux; diff -Nrup a/mysql-test/suite/parts/r/partition_syntax_innodb.result b/mysql-test/suite/parts/r/partition_syntax_innodb.result --- a/mysql-test/suite/parts/r/partition_syntax_innodb.result 2007-08-27 20:09:10 +02:00 +++ b/mysql-test/suite/parts/r/partition_syntax_innodb.result 2007-10-10 22:03:07 +02:00 @@ -4,9 +4,6 @@ SET @@session.storage_engine = 'InnoDB'; #------------------------------------------------------------------------ # There are several testcases disabled because of the open bugs # #15890 -# The expected results suffer from the following bugs -# harmless #17455, #19305 -# which cannot be suppressed because of technical reasons. #------------------------------------------------------------------------ #------------------------------------------------------------------------ @@ -31,7 +28,7 @@ DROP TABLE IF EXISTS t0_definition; CREATE TABLE t0_definition ( state CHAR(3), create_command VARBINARY(5000), -file_list VARBINARY(5000), +file_list VARBINARY(10000), PRIMARY KEY (state) ) ENGINE = MEMORY; DROP TABLE IF EXISTS t0_aux; diff -Nrup a/mysql-test/suite/parts/r/partition_syntax_myisam.result b/mysql-test/suite/parts/r/partition_syntax_myisam.result --- a/mysql-test/suite/parts/r/partition_syntax_myisam.result 2007-08-27 20:09:10 +02:00 +++ b/mysql-test/suite/parts/r/partition_syntax_myisam.result 2007-10-10 22:03:07 +02:00 @@ -4,9 +4,6 @@ SET @@session.storage_engine = 'MyISAM'; #------------------------------------------------------------------------ # There are several testcases disabled because of the open bugs # #15890 -# The expected results suffer from the following bugs -# harmless #17455, #19305 -# which cannot be suppressed because of technical reasons. #------------------------------------------------------------------------ #------------------------------------------------------------------------ @@ -31,7 +28,7 @@ DROP TABLE IF EXISTS t0_definition; CREATE TABLE t0_definition ( state CHAR(3), create_command VARBINARY(5000), -file_list VARBINARY(5000), +file_list VARBINARY(10000), PRIMARY KEY (state) ) ENGINE = MEMORY; DROP TABLE IF EXISTS t0_aux; -- MySQL Code Commits Mailing List For list archives: http://lists.mysql.com/commits To unsubscribe: http://lists.mysql.com/commits?unsub=lists@pantek.comReceived on Wed Oct 10 16:03:23 2007 This archive was generated by hypermail 2.1.8 : Thu Jul 03 2008 - 09:40:51 EDT |
||||||||||
|
|||||||||||