mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-4345
Sampling of selectivity of LIKE predicate.
This commit is contained in:
@ -1051,4 +1051,11 @@ void store_key_image_to_rec(Field *field, uchar *ptr, uint len);
|
||||
|
||||
extern String null_string;
|
||||
|
||||
/* check this number of rows (default value) */
|
||||
#define SELECTIVITY_SAMPLING_LIMIT 5000
|
||||
/* but no more then this part of table (10%) */
|
||||
#define SELECTIVITY_SAMPLING_SHARE 0.10
|
||||
/* do not check if we are going check less then this number of records */
|
||||
#define SELECTIVITY_SAMPLING_THRESHOLD 10
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user