virajjasani commented on code in PR #2226: URL: https://github.com/apache/phoenix/pull/2226#discussion_r2209190619
########## phoenix-core-client/src/main/java/org/apache/phoenix/jdbc/PhoenixStatement.java: ########## @@ -825,14 +826,14 @@ private ExecutableSelectStatement(TableNode from, HintNode hint, boolean isDisti boolean hasSequence, List<SelectStatement> selects, Map<String, UDFParseNode> udfParseNodes) { super(from, hint, isDistinct, select, where, groupBy, having, orderBy, limit, offset, bindCount, isAggregate, hasSequence, selects, udfParseNodes); } - + private ExecutableSelectStatement(ExecutableSelectStatement select) { this(select.getFrom(), select.getHint(), select.isDistinct(), select.getSelect(), select.getWhere(), select.getGroupBy(), select.getHaving(), select.getOrderBy(), select.getLimit(), select.getOffset(), select.getBindCount(), select.isAggregate(), select.hasSequence(), select.getSelects(), select.getUdfParseNodes()); } - Review Comment: Too many formatting changes, can we avoid it? :) -- 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...@phoenix.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org