1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

inform test result of zero hist_size for json histogram

Signed-off-by: Michael Okoko <okokomichaels@outlook.com>
This commit is contained in:
Michael Okoko
2021-07-31 20:21:38 +01:00
committed by Sergei Petrunia
parent bf4d0dcfe2
commit fe2e516a50
3 changed files with 7 additions and 8 deletions

View File

@ -372,9 +372,9 @@ public:
is_available();
}
void set_values (uchar *vals) override { values= (uchar *) vals; }
void set_values (uchar *vals) override { values= vals; }
uchar *get_values() override { return (uchar *) values; }
uchar *get_values() override { return values; }
double range_selectivity(double min_pos, double max_pos) override {return 0.1;}