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 a6c5650d2d0 set executedByUserID for AuthorRelationalPlan (#16506) a6c5650d2d0 is described below commit a6c5650d2d0b674a972f186ac050858dc9224ce1 Author: shuwenwei <55970239+shuwen...@users.noreply.github.com> AuthorDate: Sun Sep 28 18:08:04 2025 +0800 set executedByUserID for AuthorRelationalPlan (#16506) --- .../iotdb/confignode/service/thrift/ConfigNodeRPCServiceProcessor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/service/thrift/ConfigNodeRPCServiceProcessor.java b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/service/thrift/ConfigNodeRPCServiceProcessor.java index 8b206558080..76dab5fc66b 100644 --- a/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/service/thrift/ConfigNodeRPCServiceProcessor.java +++ b/iotdb-core/confignode/src/main/java/org/apache/iotdb/confignode/service/thrift/ConfigNodeRPCServiceProcessor.java @@ -732,7 +732,8 @@ public class ConfigNodeRPCServiceProcessor implements IConfigNodeRPCService.Ifac req.getTable(), req.getPermissions(), req.isGrantOpt(), - req.getPassword())); + req.getPassword(), + req.getExecutedByUserID())); final TAuthorizerResp resp = new TAuthorizerResp(dataSet.getStatus()); resp.setMemberInfo(dataSet.getMemberList()); resp.setPermissionInfo(dataSet.getPermissionInfoResp());