MySQL 8.0.40
Source Code Documentation
|
Namespaces | |
namespace | equi_height |
Classes | |
class | Equi_height |
class | Error_context |
Error context to validate given JSON object which represents a histogram. More... | |
class | Histogram |
Histogram base class. More... | |
struct | Histogram_comparator |
Histogram comparator. More... | |
class | Histogram_error_handler |
RAII class to trap lower-level errors. More... | |
struct | Histogram_psi_key_alloc |
class | Singleton |
struct | SingletonBucket |
class | Value_map |
Value_map class. More... | |
class | Value_map_base |
The abstract base class for all Value_map types. More... | |
Typedefs | |
using | value_map_collection = std::map< uint16, std::unique_ptr< histograms::Value_map_base >, std::less< uint16 >, Histogram_key_allocator< std::pair< const uint16, std::unique_ptr< histograms::Value_map_base > > > > |
template<class T > | |
using | Histogram_key_allocator = Stateless_allocator< T, Histogram_psi_key_alloc > |
template<class T > | |
using | value_map_allocator = Mem_root_allocator< std::pair< const T, ha_rows > > |
template<typename T > | |
using | value_map_type = std::map< T, ha_rows, Histogram_comparator, value_map_allocator< T > > |
using | columns_set = std::set< std::string, std::less< std::string >, Histogram_key_allocator< std::string > > |
using | results_map = std::map< std::string, Message, std::less< std::string >, Histogram_key_allocator< std::pair< const std::string, Message > > > |
Functions | |
template<class T > | |
static bool | FitsIntoBuckets (const Value_map< T > &value_map, ha_rows max_bucket_values, size_t max_buckets) |
template<class T > | |
static ha_rows | FindBucketMaxValues (const Value_map< T > &value_map, size_t max_buckets) |
static ha_rows | EstimateDistinctValues (double sampling_rate, ha_rows bucket_distinct_values, ha_rows bucket_unary_values) |
static Value_map_type | field_type_to_value_map_type (const enum_field_types field_type, const bool is_unsigned) |
Convert from enum_field_types to Value_map_type. More... | |
static Value_map_type | field_type_to_value_map_type (const Field *field) |
Get the Value_map_type from a Field object. More... | |
static type_conversion_status | check_value_aux (Field *field, const double *nr) |
Helper function for check_value(). More... | |
static type_conversion_status | check_value_aux (Field *field, const String *str) |
static type_conversion_status | check_value_aux (Field *field, const longlong *nr) |
static type_conversion_status | check_value_aux (Field *field, const ulonglong *nr) |
static type_conversion_status | check_value_aux (Field *field, MYSQL_TIME *ltime) |
static type_conversion_status | check_value_aux (Field *field, const my_decimal *mdec) |
static bool | lock_for_write (THD *thd, const MDL_key &mdl_key) |
Lock a column statistic MDL key for writing (exclusive lock). More... | |
template<class T > | |
Histogram * | build_histogram (MEM_ROOT *mem_root, const Value_map< T > &value_map, size_t num_buckets, const std::string &db_name, const std::string &tbl_name, const std::string &col_name) |
Create a histogram from a value map. More... | |
static bool | covered_by_single_part_index (const THD *thd, const Field *field) |
Check if a field is covered by a single-part unique index (primary key or unique index). More... | |
static bool | prepare_value_maps (std::vector< Field *, Histogram_key_allocator< Field * > > &fields, value_map_collection &value_maps, size_t *row_size_bytes) |
Prepare one Value_map for each field we are creating histogram statistics for. More... | |
static bool | fill_value_maps (const std::vector< Field *, Histogram_key_allocator< Field * > > &fields, double sample_percentage, const TABLE *table, value_map_collection &value_maps) |
Read data from a table into the provided Value_maps. More... | |
bool | update_histogram (THD *thd, Table_ref *table, const columns_set &columns, int num_buckets, LEX_STRING data, results_map &results) |
Create or update histograms for a set of columns of a given table. More... | |
bool | drop_all_histograms (THD *thd, Table_ref &table, const dd::Table &original_table_def, results_map &results) |
Drop histograms for all columns in a given table. More... | |
bool | drop_histograms (THD *thd, Table_ref &table, const columns_set &columns, bool needs_lock, results_map &results) |
Drop histograms for a set of columns in a given table. More... | |
static bool | rename_histogram (THD *thd, const char *old_schema_name, const char *old_table_name, const char *new_schema_name, const char *new_table_name, const char *column_name, results_map &results) |
Rename a single histogram from a old schema/table name to a new schema/table name. More... | |
bool | rename_histograms (THD *thd, const char *old_schema_name, const char *old_table_name, const char *new_schema_name, const char *new_table_name, results_map &results) |
Rename histograms for all columns in a given table. More... | |
bool | find_histogram (THD *thd, const std::string &schema_name, const std::string &table_name, const std::string &column_name, const Histogram **histogram) |
static bool | get_temporal (Item *item, Value_map_type preferred_type, MYSQL_TIME *time_value) |
template Histogram * | build_histogram (MEM_ROOT *, const Value_map< double > &, size_t, const std::string &, const std::string &, const std::string &) |
template Histogram * | build_histogram (MEM_ROOT *, const Value_map< String > &, size_t, const std::string &, const std::string &, const std::string &) |
template Histogram * | build_histogram (MEM_ROOT *, const Value_map< ulonglong > &, size_t, const std::string &, const std::string &, const std::string &) |
template Histogram * | build_histogram (MEM_ROOT *, const Value_map< longlong > &, size_t, const std::string &, const std::string &, const std::string &) |
template Histogram * | build_histogram (MEM_ROOT *, const Value_map< MYSQL_TIME > &, size_t, const std::string &, const std::string &, const std::string &) |
template Histogram * | build_histogram (MEM_ROOT *, const Value_map< my_decimal > &, size_t, const std::string &, const std::string &, const std::string &) |
bool | empty (const Histogram &histogram) |
Return true if 'histogram' was built on an empty table. More... | |
Variables | |
static constexpr int | MAX_NUMBER_OF_HISTOGRAM_BUCKETS = 1024 |
static std::map< const Value_map_type, const std::string > | value_map_type_to_str |
static const double | INVALID_NULL_VALUES_FRACTION = -1.0 |
The default (and invalid) value for "m_null_values_fraction". More... | |
static const size_t | HISTOGRAM_MAX_COMPARE_LENGTH = 42 |
The maximum number of characters to evaluate when building histograms. More... | |
using histograms::columns_set = typedef std::set<std::string, std::less<std::string>, Histogram_key_allocator<std::string> > |
using histograms::Histogram_key_allocator = typedef Stateless_allocator<T, Histogram_psi_key_alloc> |
using histograms::results_map = typedef std::map<std::string, Message, std::less<std::string>, Histogram_key_allocator<std::pair<const std::string, Message> >> |
using histograms::value_map_allocator = typedef Mem_root_allocator<std::pair<const T, ha_rows> > |
using histograms::value_map_collection = typedef std::map< uint16, std::unique_ptr<histograms::Value_map_base>, std::less<uint16>, Histogram_key_allocator< std::pair<const uint16, std::unique_ptr<histograms::Value_map_base> >> > |
using histograms::value_map_type = typedef std::map<T, ha_rows, Histogram_comparator, value_map_allocator<T> > |
|
strong |
|
strong |
|
strong |
template Histogram * histograms::build_histogram | ( | MEM_ROOT * | , |
const Value_map< double > & | , | ||
size_t | , | ||
const std::string & | , | ||
const std::string & | , | ||
const std::string & | |||
) |
template Histogram * histograms::build_histogram | ( | MEM_ROOT * | , |
const Value_map< longlong > & | , | ||
size_t | , | ||
const std::string & | , | ||
const std::string & | , | ||
const std::string & | |||
) |
template Histogram * histograms::build_histogram | ( | MEM_ROOT * | , |
const Value_map< my_decimal > & | , | ||
size_t | , | ||
const std::string & | , | ||
const std::string & | , | ||
const std::string & | |||
) |
template Histogram * histograms::build_histogram | ( | MEM_ROOT * | , |
const Value_map< MYSQL_TIME > & | , | ||
size_t | , | ||
const std::string & | , | ||
const std::string & | , | ||
const std::string & | |||
) |
template Histogram * histograms::build_histogram | ( | MEM_ROOT * | , |
const Value_map< String > & | , | ||
size_t | , | ||
const std::string & | , | ||
const std::string & | , | ||
const std::string & | |||
) |
template Histogram * histograms::build_histogram | ( | MEM_ROOT * | , |
const Value_map< ulonglong > & | , | ||
size_t | , | ||
const std::string & | , | ||
const std::string & | , | ||
const std::string & | |||
) |
Histogram * histograms::build_histogram | ( | MEM_ROOT * | mem_root, |
const Value_map< T > & | value_map, | ||
size_t | num_buckets, | ||
const std::string & | db_name, | ||
const std::string & | tbl_name, | ||
const std::string & | col_name | ||
) |
Create a histogram from a value map.
This function will build a histogram from a value map. The histogram type depends on both the size of the input data, as well as the number of buckets specified. If the number of distinct values is less than or equal to the number of buckets, a Singleton histogram will be created. Otherwise, an equi-height histogram will be created.
The histogram will be allocated on the supplied mem_root, and it is the callers responsibility to properly clean up when the histogram isn't needed anymore.
mem_root | the MEM_ROOT where the histogram contents will be allocated |
value_map | a value map containing [value, frequency] |
num_buckets | the maximum number of buckets to create |
db_name | name of the database this histogram represents |
tbl_name | name of the table this histogram represents |
col_name | name of the column this histogram represents |
|
static |
Helper function for check_value().
It uses Field::store() on the actual Field that the histogram belongs to in order to test if the value is in the field definition domain.
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
Check if a field is covered by a single-part unique index (primary key or unique index).
Indexes that are marked as invisible are ignored.
thd | The current session. |
field | The field to check. |
bool histograms::drop_all_histograms | ( | THD * | thd, |
Table_ref & | table, | ||
const dd::Table & | original_table_def, | ||
results_map & | results | ||
) |
Drop histograms for all columns in a given table.
thd | Thread handler. |
table | The table where we should look for the columns. |
original_table_def | Original table definition. |
results | A map where the result of each operation is stored. |
bool histograms::drop_histograms | ( | THD * | thd, |
Table_ref & | table, | ||
const columns_set & | columns, | ||
bool | needs_lock, | ||
results_map & | results | ||
) |
Drop histograms for a set of columns in a given table.
This function will try to drop the histogram statistics for all specified columns. If one of the columns fail, it will continue to the next one and try.
thd | Thread handler. |
table | The table where we should look for the columns. |
columns | Columns specified by the user. |
needs_lock | Whether we need to acquire metadata locks on the table and column statistics to be dropped. |
results | A map where the result of each operation is stored. |
|
inline |
Return true if 'histogram' was built on an empty table.
|
static |
|
static |
Convert from enum_field_types to Value_map_type.
field_type | the field type |
is_unsigned | whether the field type is unsigned or not. This is only considered if the field type is LONGLONG |
|
static |
Get the Value_map_type from a Field object.
This effectively looks at the real_type() of a Field, and converts this to a Value_map_type
field | The field to convert from |
|
static |
Read data from a table into the provided Value_maps.
We will read data using sampling with the provided sampling percentage.
fields | A vector with the fields we are reading data from. |
sample_percentage | The sampling percentage we will use for sampling. Must be between 0.0 and 100.0. |
table | The table we are reading the data from. |
value_maps | The Value_maps we are reading data into. |
bool histograms::find_histogram | ( | THD * | thd, |
const std::string & | schema_name, | ||
const std::string & | table_name, | ||
const std::string & | column_name, | ||
const Histogram ** | histogram | ||
) |
|
static |
|
static |
|
static |
Lock a column statistic MDL key for writing (exclusive lock).
thd | thread handle |
mdl_key | the MDL key to lock |
|
static |
Prepare one Value_map for each field we are creating histogram statistics for.
We will also estimate how many bytes one row will consume. For example, if we are creating histogram statistics for two INTEGER columns, we estimate that one row will consume (sizeof(longlong) * 2) bytes (16 bytes).
fields | A vector with all the fields we are creating histogram statistics for. | |
[out] | value_maps | A map where the Value_maps will be initialized. |
[out] | row_size_bytes | An estimation of how many bytes one row will consume. |
|
static |
Rename a single histogram from a old schema/table name to a new schema/table name.
It is used for instance by RENAME TABLE, where the contents of the histograms doesn't change.
thd | Thread handler. |
old_schema_name | The old schema name. |
old_table_name | The old table name. |
new_schema_name | The new schema name. |
new_table_name | The new table name. |
column_name | The column name. |
results | A map where the result of the operation is stored. |
bool histograms::rename_histograms | ( | THD * | thd, |
const char * | old_schema_name, | ||
const char * | old_table_name, | ||
const char * | new_schema_name, | ||
const char * | new_table_name, | ||
results_map & | results | ||
) |
Rename histograms for all columns in a given table.
thd | Thread handler. |
old_schema_name | The old schema name |
old_table_name | The old table name |
new_schema_name | The new schema name |
new_table_name | The new table name |
results | A map where the result of each operation is stored. |
bool histograms::update_histogram | ( | THD * | thd, |
Table_ref * | table, | ||
const columns_set & | columns, | ||
int | num_buckets, | ||
LEX_STRING | data, | ||
results_map & | results | ||
) |
Create or update histograms for a set of columns of a given table.
This function will try to create histogram statistics for all the columns specified. If one of the columns fail, it will continue to the next one and try.
thd | Thread handler. |
table | The table where we should look for the columns/data. |
columns | Columns specified by the user. |
num_buckets | The maximum number of buckets to create in each histogram. |
data | The histogram json literal for update |
results | A map where the result of each operation is stored. |
|
static |
The maximum number of characters to evaluate when building histograms.
For binary/blob values, this is the number of bytes to consider.
|
static |
The default (and invalid) value for "m_null_values_fraction".
|
staticconstexpr |
|
static |