diff options
author | Nikita Malyavin <nikitamalyavin@gmail.com> | 2021-06-28 21:31:14 +0300 |
---|---|---|
committer | Nikita Malyavin <nikitamalyavin@gmail.com> | 2021-07-12 22:00:40 +0300 |
commit | f64a4f672ab9c5338a700a05650df394a732aac9 (patch) | |
tree | 80ef166d913eae50e3ffa13de9204e1a4c741b37 /sql/key.cc | |
parent | 0f6a5b4390efeac19ff3ad6fd3a8dd32241b343c (diff) | |
download | mariadb-git-f64a4f672ab9c5338a700a05650df394a732aac9.tar.gz |
follow-up MDEV-18166: rename marking functions
Reformulate mark_columns_used_by_index* function family in a more laconic
way:
mark_columns_used_by_index -> mark_index_columns
mark_columns_used_by_index_for_read_no_reset -> mark_index_columns_for_read
mark_columns_used_by_index_no_reset -> mark_index_columns_no_reset
static mark_index_columns -> do_mark_index_columns
Diffstat (limited to 'sql/key.cc')
-rw-r--r-- | sql/key.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/key.cc b/sql/key.cc index 689b1e9c886..d0da75ae61b 100644 --- a/sql/key.cc +++ b/sql/key.cc @@ -465,7 +465,7 @@ void key_unpack(String *to, TABLE *table, KEY *key) bool is_key_used(TABLE *table, uint idx, const MY_BITMAP *fields) { - table->mark_columns_used_by_index(idx, &table->tmp_set); + table->mark_index_columns(idx, &table->tmp_set); return bitmap_is_overlapping(&table->tmp_set, fields); } |