You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@iotdb.apache.org by GitBox <gi...@apache.org> on 2022/09/19 08:26:37 UTC

[GitHub] [iotdb] LittleHealth commented on a diff in pull request #7290: [IOTDB-4431] Add QuickSort in TVList

LittleHealth commented on code in PR #7290:
URL: https://github.com/apache/iotdb/pull/7290#discussion_r973983703


##########
server/src/main/java/org/apache/iotdb/db/conf/IoTDBDescriptor.java:
##########
@@ -1381,6 +1382,11 @@ private void loadTimedService(Properties properties) {
     if (unseqMemTableFlushCheckInterval > 0) {
       conf.setUnseqMemtableFlushCheckInterval(unseqMemTableFlushCheckInterval);
     }
+
+    conf.setTvListSortAlgorithm(
+        TVListSortAlgorithm.valueOf(
+            properties.getProperty(
+                "tvList_sort_algorithm", conf.getTvListSortAlgorithm().toString())));

Review Comment:
   fixed, move it to the function loadProperties in line 395.



-- 
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: reviews-unsubscribe@iotdb.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org