diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2019-06-15 16:04:49 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2019-06-19 11:10:49 +0200 |
commit | 4594d68d10b77538312701f9eea316a27d6def8a (patch) | |
tree | 70ceba438c3a47fe62b088810a652ea48b18483c /sql/table.h | |
parent | 3c88ce4cd112f696002d5f7461db68a3dafeb838 (diff) | |
download | mariadb-git-4594d68d10b77538312701f9eea316a27d6def8a.tar.gz |
MDEV-19702 Refactor Bitmap<N> to be based on ulonglong, not on uint32
Removed Field_map, since it was used only in a single function.
Fixed is_indexed_agg_distinct(), since it relied on initialization of
Bitmap in constructor.
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sql/table.h b/sql/table.h index ae146fa40f0..b256df25a80 100644 --- a/sql/table.h +++ b/sql/table.h @@ -1094,9 +1094,6 @@ struct st_cond_statistic; #define CHECK_ROW_FOR_NULLS_TO_REJECT (1 << 0) #define REJECT_ROW_DUE_TO_NULL_FIELDS (1 << 1) -/* Bitmap of table's fields */ -typedef Bitmap<MAX_FIELDS> Field_map; - class SplM_opt_info; struct vers_select_conds_t; |