are there any plans to implement setFetchSize in PhoenixStatement? when retrieving large number of rows the resultSet generates lots of network calls back to Hbase
phoenix-core/src/main/java/org/apache/phoenix/jdbc/PhoenixStatement.java:
@Override
public void setFetchSize(int rows) throws SQLException {
// TODO: map to Scan.setBatch() ?
throw new SQLFeatureNotSupportedException();
}
