From 9b9d2abe1959cbc3ccf610a386a35cfe935f0879 Mon Sep 17 00:00:00 2001 From: Any Association Date: Sat, 30 Nov 2024 00:34:19 +0000 Subject: [PATCH] Update proto files --- models.proto | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/models.proto b/models.proto index b1cc771..0f6cc2c 100644 --- a/models.proto +++ b/models.proto @@ -407,17 +407,18 @@ message Block { enum FormulaType { None = 0; Count = 1; - CountDistinct = 2; - CountEmpty = 3; - CountNotEmpty = 4; - PercentEmpty = 5; - PercentNotEmpty = 6; - MathSum = 7; - MathAverage = 8; - MathMedian = 9; - MathMin = 10; - MathMax = 11; - Range = 12; + CountValue = 2; + CountDistinct = 3; + CountEmpty = 4; + CountNotEmpty = 5; + PercentEmpty = 6; + PercentNotEmpty = 7; + MathSum = 8; + MathAverage = 9; + MathMedian = 10; + MathMin = 11; + MathMax = 12; + Range = 13; } }