iotdb-collector/collector-core/src/main/java/org/apache/iotdb/collector/plugin/builtin/sink/payload/thrift/request/PipeTransferSchemaSnapshotSealReq.java [72:90]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    parameters.put(ColumnHeaderConstant.DATABASE, databaseName);
    parameters.put(ColumnHeaderConstant.TYPE, typeString);

    final List<String> fileNameList;
    final List<Long> fileLengthList;

    // Tree model sync
    if (Objects.isNull(attributeSnapshotName)) {
      fileNameList =
          Objects.nonNull(tLogName)
              ? Arrays.asList(mTreeSnapshotName, tLogName)
              : Collections.singletonList(mTreeSnapshotName);
      fileLengthList =
          Objects.nonNull(tLogName)
              ? Arrays.asList(mTreeSnapshotLength, tLogLength)
              : Collections.singletonList(mTreeSnapshotLength);
    } else {
      fileNameList = Arrays.asList(mTreeSnapshotName, tLogName, attributeSnapshotName);
      fileLengthList = Arrays.asList(mTreeSnapshotLength, tLogLength, attributeSnapshotLength);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



iotdb-collector/collector-core/src/main/java/org/apache/iotdb/collector/plugin/builtin/sink/payload/thrift/request/PipeTransferSchemaSnapshotSealReq.java [130:148]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    parameters.put(ColumnHeaderConstant.DATABASE, databaseName);
    parameters.put(ColumnHeaderConstant.TYPE, typeString);

    final List<String> fileNameList;
    final List<Long> fileLengthList;

    // Tree model sync
    if (Objects.isNull(attributeSnapshotName)) {
      fileNameList =
          Objects.nonNull(tLogName)
              ? Arrays.asList(mTreeSnapshotName, tLogName)
              : Collections.singletonList(mTreeSnapshotName);
      fileLengthList =
          Objects.nonNull(tLogName)
              ? Arrays.asList(mTreeSnapshotLength, tLogLength)
              : Collections.singletonList(mTreeSnapshotLength);
    } else {
      fileNameList = Arrays.asList(mTreeSnapshotName, tLogName, attributeSnapshotName);
      fileLengthList = Arrays.asList(mTreeSnapshotLength, tLogLength, attributeSnapshotLength);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



