This is an automated email from the ASF dual-hosted git repository.
jackietien 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 86178d730c1 Throw 701 while show time partition in table mode
86178d730c1 is described below
commit 86178d730c1ae8cfbffccaa87e313676ef0bb665
Author: Jackie Tien <[email protected]>
AuthorDate: Mon Apr 28 18:03:01 2025 +0800
Throw 701 while show time partition in table mode
---
.../db/queryengine/plan/relational/sql/parser/AstBuilder.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/sql/parser/AstBuilder.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/sql/parser/AstBuilder.java
index c829153b4b0..1909b85fc72 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/sql/parser/AstBuilder.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/sql/parser/AstBuilder.java
@@ -1143,25 +1143,25 @@ public class AstBuilder extends
RelationalSqlBaseVisitor<Node> {
@Override
public Node
visitShowRegionIdStatement(RelationalSqlParser.ShowRegionIdStatementContext
ctx) {
- return super.visitShowRegionIdStatement(ctx);
+ throw new SemanticException("SHOW REGION ID is not supported yet.");
}
@Override
public Node visitShowTimeSlotListStatement(
RelationalSqlParser.ShowTimeSlotListStatementContext ctx) {
- return super.visitShowTimeSlotListStatement(ctx);
+ throw new SemanticException("SHOW TIME SLOT is not supported yet.");
}
@Override
public Node visitCountTimeSlotListStatement(
RelationalSqlParser.CountTimeSlotListStatementContext ctx) {
- return super.visitCountTimeSlotListStatement(ctx);
+ throw new SemanticException("COUNT TIME SLOT is not supported yet.");
}
@Override
public Node visitShowSeriesSlotListStatement(
RelationalSqlParser.ShowSeriesSlotListStatementContext ctx) {
- return super.visitShowSeriesSlotListStatement(ctx);
+ throw new SemanticException("SHOW SERIES SLOT is not supported yet.");
}
@Override