Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.2(EOL)
-
10.2.2-1, 10.2.4-3
Description
http://buildbot.askmonty.org/buildbot/builders/winx64-packages/builds/392/steps/test/logs/stdio
main.bootstrap w4 [ fail ]
|
Test ended at 2016-06-26 18:38:17
|
|
CURRENT_TEST: main.bootstrap
|
mysqltest: At line 45: command "$MYSQLD_BOOTSTRAP_CMD < $MYSQLTEST_VARDIR/tmp/long_query.sql >> $MYSQLTEST_VARDIR/tmp/bootstrap.log 2>&1" failed with wrong error: 255
|
|
The result from queries just before the failure was:
|
drop table if exists t1;
|
drop table t1;
|
drop table t1;
|
ERROR 42S02: Unknown table 'test.t1'
|
set @my_max_allowed_packet= @@max_allowed_packet;
|
set global max_allowed_packet=100*@@max_allowed_packet;
|
|
- saving 'D:/winx64-packages/build/mysql-test/var/4/log/main.bootstrap/' to 'D:/winx64-packages/build/mysql-test/var/log/main.bootstrap/'
|
- found 'mysqld.dmp' (0/5)
|
|
Retrying test main.bootstrap, attempt(2/3)...
|
|
worker[4] > Restart - not started
|
It happened a few times recently.
Attachments
Issue Links
- blocks
-
MDEV-7069 Fix buildbot failures in main server trees
-
- Closed
-
Crash callstack (from a mysqld.dmp on buildbot)
ntdll.dll!RtlpWaitOnCriticalSection() Unknown
ntdll.dll!RtlpEnterCriticalSectionContended() Unknown
mysqld.exe!Statement_map::~Statement_map() Line 3963 C++
mysqld.exe!THD::~THD() Line 1790 C++
mysqld.exe!THD::`scalar deleting destructor'(unsigned int) C++
> mysqld.exe!do_handle_bootstrap(THD * thd=0x0000008c80cf6508) Line 1086 C++
mysqld.exe!handle_bootstrap(void * arg=0x0000008c80cf6508) Line 1066 C++
mysqld.exe!pthread_start(void * p=0x0000000000000000) Line 62 C
mysqld.exe!_callthreadstartex() Line 376 C
mysqld.exe!_threadstartex(void * ptd=0x0000008c80cfeff0) Line 354 C
kernel32.dll!BaseThreadInitThunk() Unknown
ntdll.dll!RtlUserThreadStart() Unknown
Mostly likely, there is a memory overwrite here that corrupts critical section. callstack shows RtlpEnterCriticalSectionContended, but this critical section cannot be contended, as there is only a single active thread.