Skip to content

Commit fa21920

Browse files
author
kaa@polly.(none)
committed
Fixed the test case for bug #31174 to not fail on 64-bit platforms.
1 parent 1825092 commit fa21920

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mysql-test/r/repair.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ SET myisam_repair_threads=@@global.myisam_repair_threads;
8484
SET myisam_sort_buffer_size=@@global.myisam_sort_buffer_size;
8585
DROP TABLE t1;
8686
CREATE TABLE t1(a CHAR(255), KEY(a));
87-
SET myisam_sort_buffer_size=4196;
87+
SET myisam_sort_buffer_size=4496;
8888
INSERT INTO t1 VALUES
8989
('0'),('0'),('0'),('0'),('0'),('0'),('0'),('0'),('0'),('0'),
9090
('0'),('0'),('0'),('0'),('0'),('0'),('0'),('0'),('0'),('0'),

mysql-test/t/repair.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ DROP TABLE t1;
8888
# myisam_sort_buffer_size
8989
#
9090
CREATE TABLE t1(a CHAR(255), KEY(a));
91-
SET myisam_sort_buffer_size=4196;
91+
SET myisam_sort_buffer_size=4496;
9292
INSERT INTO t1 VALUES
9393
('0'),('0'),('0'),('0'),('0'),('0'),('0'),('0'),('0'),('0'),
9494
('0'),('0'),('0'),('0'),('0'),('0'),('0'),('0'),('0'),('0'),

0 commit comments

Comments
 (0)