Github user jihoonson commented on a diff in the pull request:
https://github.com/apache/tajo/pull/13#discussion_r13048763
--- Diff:
tajo-algebra/src/main/java/org/apache/tajo/algebra/WindowFunctionExpr.java ---
@@ -19,19 +19,17 @@
package org.apache.tajo.algebra;
import com.google.common.base.Objects;
+import com.google.gson.annotations.Expose;
import org.apache.tajo.util.TUtil;
-public class WindowFunctionExpr extends Expr {
- // set function
- GeneralSetFunctionExpr function;
+public class WindowFunctionExpr extends GeneralSetFunctionExpr {
// over clause - only one of both is used.
- private String windowName;
- private WindowSpecExpr windowSpec;
+ @Expose private String windowName;
--- End diff --
Would you add a serialized name for the consistency of json representation?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---