Skip to content

Commit ebe05c6

Browse files
wjr4hywangjianrong
andauthored
[ISSUE-7015] Rename variable 'RawPathToGroupedPathMapInHaving' (apache#7053)
Co-authored-by: wangjianrong <wangjianrong@cmhi.chinamobile.com>
1 parent 9e0512a commit ebe05c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/main/java/org/apache/iotdb/db/mpp/plan/analyze/AnalyzeVisitor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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()));

0 commit comments

Comments
 (0)