You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@iotdb.apache.org by "Jialin Qiao (Jira)" <ji...@apache.org> on 2020/02/26 13:08:00 UTC

[jira] [Closed] (IOTDB-524) Sequence File's order isn't right

     [ https://issues.apache.org/jira/browse/IOTDB-524?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jialin Qiao closed IOTDB-524.
-----------------------------
    Fix Version/s: 0.10.0-SNAPSHOT
       Resolution: Fixed

> Sequence File's order isn't right
> ---------------------------------
>
>                 Key: IOTDB-524
>                 URL: https://issues.apache.org/jira/browse/IOTDB-524
>             Project: Apache IoTDB
>          Issue Type: Bug
>            Reporter: Kaifeng Xue
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 0.10.0-SNAPSHOT
>
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> In StorageGroupProcessor, we order sequence file as this:
> ```
> private TreeSet<TsFileResource> sequenceFileTreeSet = new TreeSet<>(
>       (o1, o2) -> {
>         int rangeCompare = o1.getFile().getParentFile().getName()
>             .compareTo(o2.getFile().getParentFile().getName());
>         return rangeCompare == 0 ? compareFileName(o1.getFile(), o2.getFile()) : rangeCompare;
>       });
> ```
> We use string comparison rather than number comparison. That's will cause "10" is smaller than "9". Which is a bug



--
This message was sent by Atlassian Jira
(v8.3.4#803005)