This is an automated email from the ASF dual-hosted git repository.
JackieTien97 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 90cc0279a17 support calculation point project with calc-graph of fuzzy
search by graph name or description (#17905)
90cc0279a17 is described below
commit 90cc0279a17a10dd17984c1a787db435d695274b
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?