dbflute / dbflute-core

DBFlute core libraries for Java8
http://dbflute.seasar.org/
23 stars 18 forks source link

DBFlute Engine: LoadDataReverse, skipping common for TSV #166

Closed jflute closed 11 months ago

jflute commented 1 year ago

Now supported by only xls.

// DfLReverseSchemaTableFilter
protected Set<String> getCommonExistingTableSet() {
    if (!isReplaceSchemaDirectUse()) {
        return DfCollectionUtil.emptySet();
    }
    final Set<String> tableSet = StringSet.createAsFlexible();
    tableSet.addAll(extractCommonExistingXlsTableSet(getMainCommonFirstXlsDataDir()));
    tableSet.addAll(extractCommonExistingXlsTableSet(getMainCommonReverseXlsDataDir()));
    tableSet.addAll(extractCommonExistingXlsTableSet(getMainCommonXlsDataDir()));
    return tableSet;
}

parent issue: #127