From 9e0faad5eb3110786e21b5e3e8f81c8a3634fbde Mon Sep 17 00:00:00 2001 From: Ganlin Zhao Date: Tue, 21 Mar 2023 16:24:20 +0800 Subject: [PATCH] remove unused MACROS --- source/libs/function/src/builtinsimpl.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/libs/function/src/builtinsimpl.c b/source/libs/function/src/builtinsimpl.c index c0f28b3e38..4760358e0d 100644 --- a/source/libs/function/src/builtinsimpl.c +++ b/source/libs/function/src/builtinsimpl.c @@ -32,9 +32,6 @@ #define TAIL_MAX_POINTS_NUM 100 #define TAIL_MAX_OFFSET 100 -#define UNIQUE_MAX_RESULT_SIZE (1024 * 1024 * 10) -#define MODE_MAX_RESULT_SIZE UNIQUE_MAX_RESULT_SIZE - #define HLL_BUCKET_BITS 14 // The bits of the bucket #define HLL_DATA_BITS (64 - HLL_BUCKET_BITS) #define HLL_BUCKETS (1 << HLL_BUCKET_BITS)