Skip to content

Commit

Permalink
corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
kanha-gupta committed Jun 9, 2023
1 parent a287406 commit 9a125c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -782,11 +782,11 @@ private IdentifierValue getWindowItem(final WindowItemContext ctx) {
}

private Collection<ExpressionSegment> getWindowSpecification(final WindowSpecificationContext ctx) {
Collection<ExpressionSegment> segments = new LinkedList<>();
Collection<ExpressionSegment> result = new LinkedList<>();
for (ExprContext each : ctx.expr()) {
segments.add((ExpressionSegment) visit(each));
result.add((ExpressionSegment) visit(each));
}
return segments;
return result;
}

@Override
Expand Down

0 comments on commit 9a125c7

Please sign in to comment.