summaryrefslogtreecommitdiff
path: root/sql/partition_info.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sql/partition_info.cc')
-rw-r--r--sql/partition_info.cc21
1 files changed, 0 insertions, 21 deletions
diff --git a/sql/partition_info.cc b/sql/partition_info.cc
index 091c065194a..8bef4165878 100644
--- a/sql/partition_info.cc
+++ b/sql/partition_info.cc
@@ -284,27 +284,6 @@ bool partition_info::set_partition_bitmaps(List<String> *partition_names)
}
-/**
- Set read/lock_partitions bitmap over non pruned partitions
-
- @param table_list Possible TABLE_LIST which can contain
- list of partition names to query
-
- @return Operation status
- @retval FALSE OK
- @retval TRUE Failed to allocate memory for bitmap or list of partitions
- did not match
-
- @note OK to call multiple times without the need for free_bitmaps.
-*/
-bool partition_info::set_partition_bitmaps_from_table(TABLE_LIST *table_list)
-{
- List<String> *partition_names= table_list ?
- NULL : table_list->partition_names;
- return set_partition_bitmaps(partition_names);
-}
-
-
/*
Create a memory area where default partition names are stored and fill it
up with the names.