This is an automated email from the ASF dual-hosted git repository. JackieTien97 pushed a commit to branch rc/2.0.10 in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 0cb572cdf9c02af148c2a7f45bf93fbc1581b7dc Author: alpass163 <[email protected]> AuthorDate: Thu Jun 11 12:03:39 2026 +0800 support calculation point project with calc-graph of fuzzy search by graph name or description (#17905) --- .../src/main/antlr4/org/apache/iotdb/db/qp/sql/IoTDBSqlParser.g4 | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/iotdb-core/antlr/src/main/antlr4/org/apache/iotdb/db/qp/sql/IoTDBSqlParser.g4 b/iotdb-core/antlr/src/main/antlr4/org/apache/iotdb/db/qp/sql/IoTDBSqlParser.g4 index 3e94667a2fa..39c854ac15c 100644 --- a/iotdb-core/antlr/src/main/antlr4/org/apache/iotdb/db/qp/sql/IoTDBSqlParser.g4 +++ b/iotdb-core/antlr/src/main/antlr4/org/apache/iotdb/db/qp/sql/IoTDBSqlParser.g4 @@ -878,9 +878,18 @@ dropCalcPoint showCalcPoint : SHOW CALCULATION POINTS prefixPath + calcPointWhereClause? rowPaginationClause? ; +calcPointWhereClause + : WHERE calcPointContainsExpression + ; + +calcPointContainsExpression + : filterKey=identifier operator_contains value=STRING_LITERAL + ; + viewColumnDefinition : identifier columnCategory=(TAG | TIME | FIELD) comment? | identifier type (columnCategory=(TAG | TIME | FIELD))? comment?
