dimas-b commented on code in PR #1802: URL: https://github.com/apache/polaris/pull/1802#discussion_r2124686366
########## persistence/relational-jdbc/src/main/java/org/apache/polaris/persistence/relational/jdbc/QueryGenerator.java: ########## @@ -37,35 +40,51 @@ public class QueryGenerator { - public static <T> String generateSelectQuery( + public static class PreparedQuery { Review Comment: I believe we should be able to use `PreparedStatement` (from `Connection.prepareStatement("...")`) instead. `PreparedStatement` would allow leveraging driver-level optimizations (in addition to supporting parameter placeholders). -- 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: issues-unsubscr...@polaris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org