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_r361111650
##########
File path:
server/src/main/java/org/apache/iotdb/db/query/externalsort/ExternalSortJobScheduler.java
##########
@@ -21,15 +21,15 @@
public class ExternalSortJobScheduler {
- private long queryId = 0;
+ private long taskId = 0;
private ExternalSortJobScheduler() {
}
- synchronized long genQueryId() {
- queryId++;
- return queryId;
+ synchronized long genTaskId() {
+ taskId++;
+ return taskId;
Review comment:
changed
----------------------------------------------------------------
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