qiaojialin commented on a change in pull request #652: [386] Vectorize the raw
data query process
URL: https://github.com/apache/incubator-iotdb/pull/652#discussion_r361238590
##########
File path: session/src/main/java/org/apache/iotdb/session/Session.java
##########
@@ -72,21 +72,27 @@
private boolean isClosed = true;
private ZoneId zoneId;
private long statementId;
+ private int fetchSize;
public Session(String host, int port) {
- this(host, port, Config.DEFAULT_USER, Config.DEFAULT_PASSWORD);
+ this(host, port, Config.DEFAULT_USER, Config.DEFAULT_PASSWORD, 10000);
}
public Session(String host, String port, String username, String password) {
- this(host, Integer.parseInt(port), username, password);
+ this(host, Integer.parseInt(port), username, password, 10000);
}
public Session(String host, int port, String username, String password) {
+ this(host, port, username, password, 10000);
Review comment:
move to Config in Session module
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services