kanha-gupta commented on code in PR #26038:
URL: https://github.com/apache/shardingsphere/pull/26038#discussion_r1225877893
##########
parser/sql/statement/src/main/java/org/apache/shardingsphere/sql/parser/sql/common/segment/generic/WindowSegment.java:
##########
@@ -31,4 +35,15 @@ public final class WindowSegment implements SQLSegment {
private final int startIndex;
private final int stopIndex;
+
+ private IdentifierValue identifierValue;
+
+ private Collection<ExpressionSegment> segments;
+
+ public WindowSegment(final int startIndex, final int stopIndex, final
IdentifierValue identifierValue, final Collection<ExpressionSegment> segments) {
+ this.startIndex = startIndex;
+ this.stopIndex = stopIndex;
+ this.identifierValue = identifierValue;
+ this.segments = segments;
Review Comment:
done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]