Merge lp:~vkolesnikov/pbxt/pbxt-bug-677868 into lp:pbxt

Proposed by Vladimir Kolesnikov
Status: Merged
Merged at revision: 865
Proposed branch: lp:~vkolesnikov/pbxt/pbxt-bug-677868
Merge into: lp:pbxt
Diff against target: 45 lines (+6/-4)
2 files modified
ChangeLog (+2/-0)
src/ha_pbxt.cc (+4/-4)
To merge this branch: bzr merge lp:~vkolesnikov/pbxt/pbxt-bug-677868
Reviewer Review Type Date Requested Status
PBXT Core Pending
Review via email: mp+42228@code.launchpad.net

Description of the change

changed limit values reported by PBXT

To post a comment you must log in.
lp:~vkolesnikov/pbxt/pbxt-bug-677868 updated
864. By Vladimir Kolesnikov

fixed version number, gcc warning about too large constant

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'ChangeLog'
2--- ChangeLog 2010-11-10 08:30:24 +0000
3+++ ChangeLog 2010-11-30 13:16:48 +0000
4@@ -1,6 +1,8 @@
5 PBXT Release Notes
6 ==================
7
8+RN338: Fixed bug #677868: SHOW TABLE STATUS reports unappropriate value Max_data_length
9+
10 ------- 1.0.11-8 Pre-GA - 2010-11-10
11
12 RN337: The repair-pending file is now written whenever a index corruption is detected.
13
14=== modified file 'src/ha_pbxt.cc'
15--- src/ha_pbxt.cc 2010-09-10 14:46:31 +0000
16+++ src/ha_pbxt.cc 2010-11-30 13:16:48 +0000
17@@ -4033,8 +4033,8 @@
18 XTIndexPtr ind;
19 TABLE_SHARE *share= TS(table);
20
21- stats.max_data_file_length = 0x00FFFFFF;
22- stats.max_index_file_length = 0x00FFFFFF;
23+ stats.max_data_file_length = 0xFFFFFFFFFFFFFFFFLL;
24+ stats.max_index_file_length = 0xFFFFFFFFFFFFFFFFLL;
25 //stats.create_time = info.create_time;
26 ref_length = XT_RECORD_OFFS_SIZE;
27 //share->db_options_in_use = info.options;
28@@ -6127,7 +6127,7 @@
29 pbxt_init, /* Plugin Init */
30 pbxt_end, /* Plugin Deinit */
31 #ifndef DRIZZLED
32- 0x0001 /* 0.1 */,
33+ 0x0100 /* 1.0 */,
34 #endif
35 NULL, /* status variables */
36 #if MYSQL_VERSION_ID >= 50118
37@@ -6173,7 +6173,7 @@
38 PLUGIN_LICENSE_GPL,
39 pbxt_init, /* Plugin Init */
40 pbxt_end, /* Plugin Deinit */
41- 0x0001 /* 0.1 */,
42+ 0x0100 /* 1.0 */,
43 NULL, /* status variables */
44 pbxt_system_variables, /* system variables */
45 "1.0.09g RC3", /* string version */

Subscribers

People subscribed via source and target branches