sh1nj1 commented on code in PR #4926: URL: https://github.com/apache/zeppelin/pull/4926#discussion_r2070983639
########## zeppelin-server/src/main/java/org/apache/zeppelin/service/ShiroAuthenticationService.java: ########## @@ -443,11 +464,12 @@ private List<String> getUserList(JdbcRealm obj) { try { con = dataSource.getConnection(); ps = con.prepareStatement(userquery); - ps.setString(1, username); - ps.setString(2, tablename); + ps.setString(1, "%" + searchText + "%"); rs = ps.executeQuery(); - while (rs.next()) { + int count = 0; Review Comment: is it naming issue, no need issue or anything else? BTW, I removed the variable. -- 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: reviews-unsubscr...@zeppelin.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org