We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a725ded commit 90cc027Copy full SHA for 90cc027
1 file changed
iotdb-core/antlr/src/main/antlr4/org/apache/iotdb/db/qp/sql/IoTDBSqlParser.g4
@@ -878,9 +878,18 @@ dropCalcPoint
878
879
showCalcPoint
880
: SHOW CALCULATION POINTS prefixPath
881
+ calcPointWhereClause?
882
rowPaginationClause?
883
;
884
885
+calcPointWhereClause
886
+ : WHERE calcPointContainsExpression
887
+ ;
888
+
889
+calcPointContainsExpression
890
+ : filterKey=identifier operator_contains value=STRING_LITERAL
891
892
893
viewColumnDefinition
894
: identifier columnCategory=(TAG | TIME | FIELD) comment?
895
| identifier type (columnCategory=(TAG | TIME | FIELD))? comment?
0 commit comments