This is an automated email from the ASF dual-hosted git repository.
justinchen pushed a commit to branch enable-time-other-name
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/enable-time-other-name by this
push:
new 3d29c5119f4 f
3d29c5119f4 is described below
commit 3d29c5119f44c2011dac855b61e9d16c7cee7a20
Author: Caideyipi <[email protected]>
AuthorDate: Fri Dec 26 12:31:10 2025 +0800
f
---
.../queryengine/plan/relational/security/TreeAccessCheckVisitor.java | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/security/TreeAccessCheckVisitor.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/security/TreeAccessCheckVisitor.java
index d53b52d2e93..147fcd71e01 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/security/TreeAccessCheckVisitor.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/relational/security/TreeAccessCheckVisitor.java
@@ -841,8 +841,9 @@ public class TreeAccessCheckVisitor extends
StatementVisitor<TSStatus, TreeAcces
@Override
public TSStatus visitShowPipes(ShowPipesStatement statement,
TreeAccessCheckContext context) {
- return checkPipeManagement(
- context.setAuditLogOperation(AuditLogOperation.DDL),
statement::getPipeName);
+ // This query cannot be rejected, but will be filtered at configNode
+ // Does not need auth check here
+ return StatusUtils.OK;
}
@Override