1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

Rename histogram_hb_v2 -> histogram_hb

This commit is contained in:
Sergei Petrunia
2021-12-02 14:38:51 +03:00
parent 1d14176ec4
commit a0f93f433a
4 changed files with 69 additions and 69 deletions

View File

@@ -650,7 +650,7 @@ bool Histogram_json_hb::parse(MEM_ROOT *mem_root, const char *db_name,
if (je.state != JST_KEY || !json_key_matches(&je, hist_key_name.get()))
{
err= "Root element must be histogram_hb_v2";
err= "Root element must be histogram_hb";
goto err;
}
@@ -659,7 +659,7 @@ bool Histogram_json_hb::parse(MEM_ROOT *mem_root, const char *db_name,
if (je.state != JST_ARRAY_START)
{
err= "histogram_hb_v2 must contain an array";
err= "histogram_hb must contain an array";
goto err;
}