[Commits] 0e8e1bb308e: Fix compilation on windows part 2
revision-id: 0e8e1bb308ea0e38f299e91baa5e45850562787a (mariadb-10.6.1-117-g0e8e1bb308e) parent(s): 2308bd5fbe3f63f93879e9c490ed8154c8de528b author: Sergei Petrunia committer: Sergei Petrunia timestamp: 2021-09-04 17:54:07 +0300 message: Fix compilation on windows part 2 --- sql/opt_histogram_json.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/opt_histogram_json.h b/sql/opt_histogram_json.h index 4cb61e95293..a83e88a88c4 100644 --- a/sql/opt_histogram_json.h +++ b/sql/opt_histogram_json.h @@ -61,7 +61,7 @@ class Histogram_json_hb : public Histogram_base */ uint get_size() override { - return size; + return (uint)size; } void init_for_collection(MEM_ROOT *mem_root, Histogram_type htype_arg,
participants (1)
-
psergey