Merge lp:~vkolesnikov/pbxt/pbxt-pbxt_max_threads_ro into lp:pbxt

Proposed by Vladimir Kolesnikov
Status: Merged
Merged at revision: not available
Proposed branch: lp:~vkolesnikov/pbxt/pbxt-pbxt_max_threads_ro
Merge into: lp:pbxt
Diff against target: 31 lines
2 files modified
ChangeLog (+2/-0)
src/ha_pbxt.cc (+2/-2)
To merge this branch: bzr merge lp:~vkolesnikov/pbxt/pbxt-pbxt_max_threads_ro
Reviewer Review Type Date Requested Status
Paul McCullagh Approve
Review via email: mp+12411@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Paul McCullagh (paul-mccullagh) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'ChangeLog'
2--- ChangeLog 2009-09-22 17:03:39 +0000
3+++ ChangeLog 2009-09-25 13:30:27 +0000
4@@ -3,6 +3,8 @@
5
6 ------- 1.0.09d RC3 - Not yet released
7
8+RN277: Added r/o flag to pbxt_max_threads server variable (this fix is related to bug bug #430637)
9+
10 RN276: Added test case for replication on tables w/o PKs (see bug #430716)
11
12 RN275: Fixed bug #430600: 'Failed to read auto-increment value from storage engine' error.
13
14=== modified file 'src/ha_pbxt.cc'
15--- src/ha_pbxt.cc 2009-09-23 07:53:51 +0000
16+++ src/ha_pbxt.cc 2009-09-25 13:30:27 +0000
17@@ -5680,12 +5680,12 @@
18
19 #ifdef DRIZZLED
20 static MYSQL_SYSVAR_INT(max_threads, pbxt_max_threads,
21- PLUGIN_VAR_OPCMDARG,
22+ PLUGIN_VAR_OPCMDARG | PLUGIN_VAR_READONLY,
23 "The maximum number of threads used by PBXT",
24 NULL, NULL, 500, 20, 20000, 1);
25 #else
26 static MYSQL_SYSVAR_INT(max_threads, pbxt_max_threads,
27- PLUGIN_VAR_OPCMDARG,
28+ PLUGIN_VAR_OPCMDARG | PLUGIN_VAR_READONLY,
29 "The maximum number of threads used by PBXT, 0 = set according to MySQL max_connections.",
30 NULL, NULL, 0, 0, 20000, 1);
31 #endif

Subscribers

People subscribed via source and target branches