iotdb-collector/collector-core/src/main/java/org/apache/iotdb/collector/utils/sorter/PipeTableModelTabletEventSorter.java [147:158]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    for (int i = 0, size = tablet.getSchemas().size(); i < size; i++) {
      final IMeasurementSchema schema = tablet.getSchemas().get(i);
      if (schema != null) {
        tablet.getValues()[columnIndex] =
            PipeTabletEventSorter.reorderValueList(
                deduplicatedSize, tablet.getValues()[columnIndex], schema.getType(), index);
        if (tablet.getBitMaps() != null && tablet.getBitMaps()[columnIndex] != null) {
          tablet.getBitMaps()[columnIndex] =
              PipeTabletEventSorter.reorderBitMap(
                  deduplicatedSize, tablet.getBitMaps()[columnIndex], index);
        }
        columnIndex++;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



iotdb-collector/collector-core/src/main/java/org/apache/iotdb/collector/utils/sorter/PipeTreeModelTabletEventSorter.java [108:119]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    for (int i = 0, size = tablet.getSchemas().size(); i < size; i++) {
      final IMeasurementSchema schema = tablet.getSchemas().get(i);
      if (schema != null) {
        tablet.getValues()[columnIndex] =
            PipeTabletEventSorter.reorderValueList(
                deduplicatedSize, tablet.getValues()[columnIndex], schema.getType(), index);
        if (tablet.getBitMaps() != null && tablet.getBitMaps()[columnIndex] != null) {
          tablet.getBitMaps()[columnIndex] =
              PipeTabletEventSorter.reorderBitMap(
                  deduplicatedSize, tablet.getBitMaps()[columnIndex], index);
        }
        columnIndex++;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



