2988 Bjorn Munch 2011-03-18
Bug #11885854 MYSQLTEST: PS-PROTOCOL IMPLIED BY CURSOR-PROTOCOL LOST AFTER ENABLE_PS_PROTOCOL
The condition cursor-protocol => ps-protocol was done at "current setting" level"
Moved it to "set by command line" level
modified:
client/mysqltest.cc
2987 Bjorn Munch 2011-03-15
Bug #11762804 55442: MYSQLD DEBUG CRASHES WHILE RUNNING MYISAM_CRASH_BEFORE_FLUSH_KEYS.TEST
This will cause affected tests to skip if CrashReporter would popup
Found 5 tests that needed modification
added:
mysql-test/include/not_crashrep.inc
modified:
mysql-test/suite/binlog/t/binlog_index.test
mysql-test/suite/innodb/t/innodb_bug53756.test
mysql-test/suite/innodb_plugin/t/innodb_bug53756.test
mysql-test/t/crash_commit_before.test
mysql-test/t/myisam_crash_before_flush_keys.test
=== modified file 'client/mysqltest.cc'
--- a/client/mysqltest.cc 2011-01-26 15:34:34 +0000
+++ b/client/mysqltest.cc 2011-03-18 11:13:54 +0000
@@ -8032,13 +8032,15 @@ int main(int argc, char **argv)
cur_file->lineno= 1;
}
init_re();
+
+ /* Cursor protcol implies ps protocol */
+ if (cursor_protocol)
+ ps_protocol= 1;
+
ps_protocol_enabled= ps_protocol;
sp_protocol_enabled= sp_protocol;
view_protocol_enabled= view_protocol;
cursor_protocol_enabled= cursor_protocol;
- /* Cursor protcol implies ps protocol */
- if (cursor_protocol_enabled)
- ps_protocol_enabled= 1;
st_connection *con= connections;
if (!( mysql_init(&con->mysql)))
No bundle (reason: useless for push emails).
| Thread |
|---|
| • bzr push into mysql-5.1-mtr branch (bjorn.munch:2987 to 2988) Bug#11885854 | Bjorn Munch | 18 Mar |