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
=== modified file 'ChangeLog'
--- ChangeLog 2010-11-10 08:30:24 +0000
+++ ChangeLog 2010-11-30 13:16:48 +0000
@@ -1,6 +1,8 @@
1PBXT Release Notes1PBXT Release Notes
2==================2==================
33
4RN338: Fixed bug #677868: SHOW TABLE STATUS reports unappropriate value Max_data_length
5
4------- 1.0.11-8 Pre-GA - 2010-11-106------- 1.0.11-8 Pre-GA - 2010-11-10
57
6RN337: The repair-pending file is now written whenever a index corruption is detected.8RN337: The repair-pending file is now written whenever a index corruption is detected.
79
=== modified file 'src/ha_pbxt.cc'
--- src/ha_pbxt.cc 2010-09-10 14:46:31 +0000
+++ src/ha_pbxt.cc 2010-11-30 13:16:48 +0000
@@ -4033,8 +4033,8 @@
4033 XTIndexPtr ind;4033 XTIndexPtr ind;
4034 TABLE_SHARE *share= TS(table);4034 TABLE_SHARE *share= TS(table);
40354035
4036 stats.max_data_file_length = 0x00FFFFFF;4036 stats.max_data_file_length = 0xFFFFFFFFFFFFFFFFLL;
4037 stats.max_index_file_length = 0x00FFFFFF;4037 stats.max_index_file_length = 0xFFFFFFFFFFFFFFFFLL;
4038 //stats.create_time = info.create_time;4038 //stats.create_time = info.create_time;
4039 ref_length = XT_RECORD_OFFS_SIZE;4039 ref_length = XT_RECORD_OFFS_SIZE;
4040 //share->db_options_in_use = info.options;4040 //share->db_options_in_use = info.options;
@@ -6127,7 +6127,7 @@
6127 pbxt_init, /* Plugin Init */6127 pbxt_init, /* Plugin Init */
6128 pbxt_end, /* Plugin Deinit */6128 pbxt_end, /* Plugin Deinit */
6129#ifndef DRIZZLED6129#ifndef DRIZZLED
6130 0x0001 /* 0.1 */,6130 0x0100 /* 1.0 */,
6131#endif6131#endif
6132 NULL, /* status variables */6132 NULL, /* status variables */
6133#if MYSQL_VERSION_ID >= 501186133#if MYSQL_VERSION_ID >= 50118
@@ -6173,7 +6173,7 @@
6173 PLUGIN_LICENSE_GPL,6173 PLUGIN_LICENSE_GPL,
6174 pbxt_init, /* Plugin Init */6174 pbxt_init, /* Plugin Init */
6175 pbxt_end, /* Plugin Deinit */6175 pbxt_end, /* Plugin Deinit */
6176 0x0001 /* 0.1 */,6176 0x0100 /* 1.0 */,
6177 NULL, /* status variables */6177 NULL, /* status variables */
6178 pbxt_system_variables, /* system variables */6178 pbxt_system_variables, /* system variables */
6179 "1.0.09g RC3", /* string version */6179 "1.0.09g RC3", /* string version */

Subscribers

People subscribed via source and target branches