RaigorJiang commented on a change in pull request #14367: URL: https://github.com/apache/shardingsphere/pull/14367#discussion_r775747832
########## File path: shardingsphere-proxy/shardingsphere-proxy-backend/src/main/java/org/apache/shardingsphere/proxy/backend/text/distsql/ral/common/show/executor/ShowAuthorityRuleExecutor.java ########## @@ -55,7 +55,7 @@ protected MergedResult createMergedResult() { } AuthorityRuleConfiguration authorityRuleConfiguration = authorityRuleConfigurationOptional.get(); List<Object> row = new LinkedList<>(); - row.add(authorityRuleConfiguration.getUsers().stream().map(each -> each.getGrantee() + ":" + each.getPassword()).collect(Collectors.joining("; "))); + row.add(authorityRuleConfiguration.getUsers().stream().map(each -> each.getGrantee() + "").collect(Collectors.joining("; "))); Review comment: Why is `+ ""` needed here, can it be removed or replaced by toString()? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@shardingsphere.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org