This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 3053112  IOTDB-889 (#1857)
3053112 is described below

commit 3053112afba80cfc2cc16f3863cfafcf4a647154
Author: Boris <[email protected]>
AuthorDate: Mon Oct 26 13:38:04 2020 +0800

    IOTDB-889 (#1857)
---
 server/src/main/java/org/apache/iotdb/db/qp/constant/SQLConstant.java | 3 ---
 1 file changed, 3 deletions(-)

diff --git 
a/server/src/main/java/org/apache/iotdb/db/qp/constant/SQLConstant.java 
b/server/src/main/java/org/apache/iotdb/db/qp/constant/SQLConstant.java
index 3ecdd94..63adc95 100644
--- a/server/src/main/java/org/apache/iotdb/db/qp/constant/SQLConstant.java
+++ b/server/src/main/java/org/apache/iotdb/db/qp/constant/SQLConstant.java
@@ -80,7 +80,6 @@ public class SQLConstant {
   public static final int LESSTHAN = SqlBaseLexer.OPERATOR_LT;
   public static final int GREATERTHANOREQUALTO = SqlBaseLexer.OPERATOR_GTE;
   public static final int GREATERTHAN = SqlBaseLexer.OPERATOR_GT;
-  public static final int EQUAL_NS = SqlBaseLexer.OPERATOR_NEQ;
   public static final int IN = SqlBaseLexer.OPERATOR_IN;
 
   public static final int TOK_SELECT = 21;
@@ -181,7 +180,6 @@ public class SQLConstant {
     tokenSymbol.put(KW_NOT, "!");
     tokenSymbol.put(EQUAL, "=");
     tokenSymbol.put(NOTEQUAL, "<>");
-    tokenSymbol.put(EQUAL_NS, "<=>");
     tokenSymbol.put(LESSTHANOREQUALTO, "<=");
     tokenSymbol.put(LESSTHAN, "<");
     tokenSymbol.put(GREATERTHANOREQUALTO, ">=");
@@ -194,7 +192,6 @@ public class SQLConstant {
     tokenNames.put(KW_NOT, "not");
     tokenNames.put(EQUAL, "equal");
     tokenNames.put(NOTEQUAL, "not_equal");
-    tokenNames.put(EQUAL_NS, "equal_ns");
     tokenNames.put(LESSTHANOREQUALTO, "lessthan_or_equalto");
     tokenNames.put(LESSTHAN, "lessthan");
     tokenNames.put(GREATERTHANOREQUALTO, "greaterthan_or_equalto");

Reply via email to