Skip to content

Commit 90cc027

Browse files
author
alpass163
authored
support calculation point project with calc-graph of fuzzy search by graph name or description (#17905)
1 parent a725ded commit 90cc027

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

iotdb-core/antlr/src/main/antlr4/org/apache/iotdb/db/qp/sql/IoTDBSqlParser.g4

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -878,9 +878,18 @@ dropCalcPoint
878878

879879
showCalcPoint
880880
: SHOW CALCULATION POINTS prefixPath
881+
calcPointWhereClause?
881882
rowPaginationClause?
882883
;
883884

885+
calcPointWhereClause
886+
: WHERE calcPointContainsExpression
887+
;
888+
889+
calcPointContainsExpression
890+
: filterKey=identifier operator_contains value=STRING_LITERAL
891+
;
892+
884893
viewColumnDefinition
885894
: identifier columnCategory=(TAG | TIME | FIELD) comment?
886895
| identifier type (columnCategory=(TAG | TIME | FIELD))? comment?

0 commit comments

Comments
 (0)