apilloud commented on a change in pull request #13759:
URL: https://github.com/apache/beam/pull/13759#discussion_r565655145
##########
File path:
sdks/java/extensions/sql/zetasql/src/main/java/org/apache/beam/sdk/extensions/sql/zetasql/BeamZetaSqlCalcRel.java
##########
@@ -153,6 +171,9 @@ public Calc copy(RelTraitSet traitSet, RelNode input,
RexProgram program) {
private transient PreparedExpression exp;
private transient List<Integer> referencedColumns;
private transient PreparedExpression.Stream stream;
+ private transient Map<BoundedWindow, Queue<Context>> pending;
+ private transient Row previousRow;
Review comment:
Done.
##########
File path:
sdks/java/extensions/sql/zetasql/src/main/java/org/apache/beam/sdk/extensions/sql/zetasql/BeamZetaSqlCalcRel.java
##########
@@ -153,6 +171,9 @@ public Calc copy(RelTraitSet traitSet, RelNode input,
RexProgram program) {
private transient PreparedExpression exp;
private transient List<Integer> referencedColumns;
private transient PreparedExpression.Stream stream;
+ private transient Map<BoundedWindow, Queue<Context>> pending;
+ private transient Row previousRow;
+ private transient Future<Value> previousFuture;
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.
For queries about this service, please contact Infrastructure at:
[email protected]