1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Code cleanup

This commit is contained in:
Sergei Petrunia
2022-01-19 18:02:40 +03:00
parent f7e49c98e6
commit ce4956f322
7 changed files with 14 additions and 28 deletions

View File

@ -188,8 +188,7 @@ public:
virtual double point_selectivity(Field *field, key_range *endpoint,
double avg_selectivity,
double total_rows)=0;
double avg_sel)=0;
virtual double range_selectivity(Field *field, key_range *min_endp,
key_range *max_endp, double avg_sel)=0;
@ -359,8 +358,7 @@ public:
Estimate selectivity of "col=const" using a histogram
*/
double point_selectivity(Field *field, key_range *endpoint,
double avg_sel,
double total_rows) override;
double avg_sel) override;
};