summaryrefslogtreecommitdiff
path: root/sql/sql_statistics.h
diff options
context:
space:
mode:
authorIgor Babaev <igor@askmonty.org>2013-04-15 22:43:07 -0700
committerIgor Babaev <igor@askmonty.org>2013-04-15 22:43:07 -0700
commitb12b3cae85effe89f91e816f86bd15bc4039779b (patch)
tree1c514c0d48fc394e9015e218ac5270112beb33a2 /sql/sql_statistics.h
parentf4cd2b37b12617ca383e625dfd07ce1468c5b5a8 (diff)
downloadmariadb-git-b12b3cae85effe89f91e816f86bd15bc4039779b.tar.gz
Added comments.
Renamed the virtual method middle_point_pos for the class Field to pos_in_interval.
Diffstat (limited to 'sql/sql_statistics.h')
-rw-r--r--sql/sql_statistics.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_statistics.h b/sql/sql_statistics.h
index 8c1e95df1f0..c6a72478c34 100644
--- a/sql/sql_statistics.h
+++ b/sql/sql_statistics.h
@@ -271,8 +271,8 @@ public:
Column_statistics *column_stats; /* Array of statistical data for columns */
Index_statistics *index_stats; /* Array of statistical data for indexes */
ulong *idx_avg_frequency; /* Array of records per key for index prefixes */
- ulong total_hist_size;
- uchar *histograms; /* Sequence of histograms */
+ ulong total_hist_size; /* Total size of all histograms */
+ uchar *histograms; /* Sequence of histograms */
};