Repository: calcite
Updated Branches:
  refs/heads/master 86993bded -> 76a8cfd18


[CALCITE-2418] Remove matchRecognize field of SqlSelect


Project: http://git-wip-us.apache.org/repos/asf/calcite/repo
Commit: http://git-wip-us.apache.org/repos/asf/calcite/commit/76a8cfd1
Tree: http://git-wip-us.apache.org/repos/asf/calcite/tree/76a8cfd1
Diff: http://git-wip-us.apache.org/repos/asf/calcite/diff/76a8cfd1

Branch: refs/heads/master
Commit: 76a8cfd18acb70b6053b983ba99bbf0ccf967e12
Parents: 86993bd
Author: Julian Hyde <[email protected]>
Authored: Tue Jul 17 16:03:45 2018 -0700
Committer: Julian Hyde <[email protected]>
Committed: Tue Sep 4 15:57:35 2018 -0700

----------------------------------------------------------------------
 core/src/main/java/org/apache/calcite/sql/SqlSelect.java | 9 ---------
 1 file changed, 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/calcite/blob/76a8cfd1/core/src/main/java/org/apache/calcite/sql/SqlSelect.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/calcite/sql/SqlSelect.java 
b/core/src/main/java/org/apache/calcite/sql/SqlSelect.java
index 2c23774..f98ec2e 100644
--- a/core/src/main/java/org/apache/calcite/sql/SqlSelect.java
+++ b/core/src/main/java/org/apache/calcite/sql/SqlSelect.java
@@ -48,7 +48,6 @@ public class SqlSelect extends SqlCall {
   SqlNodeList orderBy;
   SqlNode offset;
   SqlNode fetch;
-  SqlMatchRecognize matchRecognize;
 
   //~ Constructors -----------------------------------------------------------
 
@@ -213,14 +212,6 @@ public class SqlSelect extends SqlCall {
     this.fetch = fetch;
   }
 
-  public SqlMatchRecognize getMatchRecognize() {
-    return matchRecognize;
-  }
-
-  public void setMatchRecognize(SqlMatchRecognize matchRecognize) {
-    this.matchRecognize = matchRecognize;
-  }
-
   public void validate(SqlValidator validator, SqlValidatorScope scope) {
     validator.validateQuery(this, scope, validator.getUnknownType());
   }

Reply via email to