KKcorps commented on a change in pull request #7117: URL: https://github.com/apache/incubator-pinot/pull/7117#discussion_r663194488
########## File path: pinot-clients/pinot-jdbc-client/src/main/java/org/apache/pinot/client/PinotPreparedStatement.java ########## @@ -28,25 +28,31 @@ import org.apache.commons.codec.binary.Hex; import org.apache.pinot.client.base.AbstractBasePreparedStatement; import org.apache.pinot.client.utils.DateTimeUtils; +import org.apache.pinot.client.utils.DriverUtils; public class PinotPreparedStatement extends AbstractBasePreparedStatement { private static final String QUERY_FORMAT = "sql"; + private static final String LIMIT_STATEMENT = "LIMIT"; private Connection _connection; private org.apache.pinot.client.Connection _session; private ResultSetGroup _resultSetGroup; private PreparedStatement _preparedStatement; private String _query; private boolean _closed; private ResultSet _resultSet; + private int _maxRows = Short.MAX_VALUE; Review comment: ok. let me check. I am using the out of the box realtime quickstart. The Max limit which it was able to handle was 10^9. Even 10^9 + 1 was giving Internal server error. -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org