diff options
author | Igor Babaev <igor@askmonty.org> | 2013-04-15 22:43:07 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2013-04-15 22:43:07 -0700 |
commit | b12b3cae85effe89f91e816f86bd15bc4039779b (patch) | |
tree | 1c514c0d48fc394e9015e218ac5270112beb33a2 /sql/sql_statistics.h | |
parent | f4cd2b37b12617ca383e625dfd07ce1468c5b5a8 (diff) | |
download | mariadb-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.h | 4 |
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 */ }; |