Bug #41556 myisam_data_pointer_size_func fails sporadically on pushbuild with timeout
Submitted: 17 Dec 2008 15:14 Modified: 5 Jan 2009 11:57
Reporter: Sven Sandberg Email Updates:
Status: Duplicate Impact on me:
None 
Category:Tests: Server Severity:S7 (Test Cases)
Version:6.0 OS:Any
Assigned to: Assigned Account CPU Architecture:Any
Tags: myisam_data_pointer_size_func, pushbuild, sporadic, test failure, timeout

[17 Dec 2008 15:14] Sven Sandberg
Description:
sporadic pushbuild failure:

main.myisam_data_pointer_size_func       [ fail ]  timeout after 900 minutes

Test case timeout after 900 seconds

== /dev/shm/var-embedded-111/log/myisam_data_pointer_size_func.log == 
END //
SET @@global.myisam_data_pointer_size = 2;
CREATE TABLE t1(a INT);
CALL sp_addRec(65535);
CALL sp_addRec(1);
ERROR HY000: The table 't1' is full
SELECT count(*) from t1;
count(*)
65535
'--Checking myisam_data_pointer_size with MAX_ROWS table option--'
SET @@global.myisam_data_pointer_size = 2;
DROP TABLE IF EXISTS t1;
CREATE TABLE t1(a INT)MAX_ROWS=70000;
CALL sp_addRec(65536);
SELECT count(*) from t1;
count(*)
65536
DROP PROCEDURE  sp_addRec;
DROP TABLE t1;
SET @@global.myisam_data_pointer_size= @start_value;

 - saving '/dev/shm/var-embedded-111/log/main.myisam_data_pointer_size_func/' to '/dev/shm/var-embedded-111/log/main.myisam_data_pointer_size_func/'

Retrying test, attempt(2/3)...

How to repeat:
https://intranet.mysql.com/secure/pushbuild/showpush.pl?dir=bzr_mysql-6.0-rpl&order=113 debx86-b/embedded
xref: http://tinyurl.com/69ry8c
[5 Jan 2009 11:57] Alfranio Junior
This is a duplicate of BUG#41861 which will be possible to fix after BUG#40399 has been fixed.