This is an automated email from the ASF dual-hosted git repository. lta pushed a commit to branch fix_show_info in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git
commit d6ca9de3aa0d116eb17733809291bbef00af7112 Author: lta <[email protected]> AuthorDate: Wed Nov 13 15:20:59 2019 +0800 update TqlLexer.g --- .../antlr3/org/apache/iotdb/db/sql/parse/TqlLexer.g | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/server/src/main/antlr3/org/apache/iotdb/db/sql/parse/TqlLexer.g b/server/src/main/antlr3/org/apache/iotdb/db/sql/parse/TqlLexer.g index c49fb6f..896c11f 100644 --- a/server/src/main/antlr3/org/apache/iotdb/db/sql/parse/TqlLexer.g +++ b/server/src/main/antlr3/org/apache/iotdb/db/sql/parse/TqlLexer.g @@ -273,6 +273,26 @@ K_UNSET : U N S E T ; +K_FLUSH + : F L U S H + ; + +K_TASK + : T A S K + ; + +K_DYNAMIC + : D Y N A M I C + ; + +K_PARAMETERS + : P A R A M E T E R S + ; + +K_INFO + : I N F O + ; + //************** logical operator*********** OPERATOR_AND : A N D
