Bug #58171 | server_uuid_embedded fails sporadically | ||
---|---|---|---|
Submitted: | 13 Nov 2010 7:03 | Modified: | 7 Dec 2010 12:57 |
Reporter: | Alexander Nozdrin | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | Tools: MTR / mysql-test-run | Severity: | S3 (Non-critical) |
Version: | 5.6 (Dahlia, Erica) | OS: | Any |
Assigned to: | Bjørn Munch | CPU Architecture: | Any |
Tags: | experimental, pb2, sporadic, test failure |
[13 Nov 2010 7:03]
Alexander Nozdrin
[13 Nov 2010 7:04]
Alexander Nozdrin
The test case has been made experimental due to this bug.
[24 Nov 2010 13:38]
Bjørn Munch
I've committed my fix twice but the bug hasn't got updated. here's the patch: === modified file 'mysql-test/t/server_uuid_embedded.test' --- mysql-test/t/server_uuid_embedded.test 2010-10-21 12:36:16 +0000 +++ mysql-test/t/server_uuid_embedded.test 2010-11-24 12:18:50 +0000 @@ -25,7 +25,8 @@ --echo # SERVER_UUID is not null --echo ----------------------------------------------------------------------------- --let $server_uuid= query_get_value(SELECT @@SERVER_UUID, @@SERVER_UUID, 1) -if (!$server_uuid) +# Cannot use !$server_uuid since it may begin with 0 +if ($server_uuid == '') { --echo server's UUID is null }
[24 Nov 2010 17:16]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/124874 2990 Bjorn Munch 2010-11-24 Bug #58171 server_uuid_embedded fails sporadically Fixed if condition to explicitly test for empty string as it used to
[24 Nov 2010 17:16]
Bugs System
A patch for this bug has been committed. After review, it may be pushed to the relevant source trees for release in the next version. You can access the patch from: http://lists.mysql.com/commits/124858 2990 Bjorn Munch 2010-11-24 Bug #58171 server_uuid_embedded fails sporadically Fixed if condition to explicitly test for empty string as it used to
[24 Nov 2010 20:42]
Bjørn Munch
Pushed to trunk-mtr.
[5 Dec 2010 12:40]
Bugs System
Pushed into mysql-trunk 5.6.1 (revid:alexander.nozdrin@oracle.com-20101205122447-6x94l4fmslpbttxj) (version source revid:alexander.nozdrin@oracle.com-20101205122447-6x94l4fmslpbttxj) (merge vers: 5.6.1) (pib:23)
[7 Dec 2010 12:57]
Paul DuBois
Changes to test suite. No changelog entry needed.