From 716c98b15d927bd2e94eb771fec6d99a749547b2 Mon Sep 17 00:00:00 2001 From: Sergei Petrunia Date: Sat, 4 Sep 2021 17:54:07 +0300 Subject: [PATCH] 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 @@ public: */ uint get_size() override { - return size; + return (uint)size; } void init_for_collection(MEM_ROOT *mem_root, Histogram_type htype_arg,