File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
server/src/main/java/org/apache/iotdb/db/mpp/plan/analyze Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -810,14 +810,14 @@ private Expression analyzeHaving(
810810 List <Expression > aggregationExpressionsInHaving ) {
811811
812812 if (queryStatement .isGroupByLevel ()) {
813- Map <Expression , Expression > RawPathToGroupedPathMapInHaving =
813+ Map <Expression , Expression > rawPathToGroupedPathMapInHaving =
814814 analyzeGroupByLevelInHaving (
815815 queryStatement , aggregationExpressionsInHaving , groupByLevelExpressions );
816816 List <Expression > convertedPredicates = new ArrayList <>();
817817 for (Expression expression : transformExpressionsInHaving ) {
818818 convertedPredicates .add (
819819 ExpressionAnalyzer .replaceRawPathWithGroupedPath (
820- expression , RawPathToGroupedPathMapInHaving ));
820+ expression , rawPathToGroupedPathMapInHaving ));
821821 }
822822 return ExpressionUtils .constructQueryFilter (
823823 convertedPredicates .stream ().distinct ().collect (Collectors .toList ()));
You can’t perform that action at this time.
0 commit comments