diff --git a/src/commons/DBConcat.cpp b/src/commons/DBConcat.cpp index f98a723d9..0abebfceb 100644 --- a/src/commons/DBConcat.cpp +++ b/src/commons/DBConcat.cpp @@ -43,8 +43,8 @@ DBConcat::DBConcat(const std::string &dataFileNameA, const std::string &indexFil } DBReader dbA(dataFileNameA.c_str(), indexFileNameA.c_str(), threads, mode); DBReader dbB(dataFileNameB.c_str(), indexFileNameB.c_str(), threads, mode); - dbA.open(DBReader::LINEAR_ACCCESS); - dbB.open(DBReader::LINEAR_ACCCESS); + dbA.open(DBReader::NOSORT); + dbB.open(DBReader::NOSORT); indexSizeA = dbA.getSize(); indexSizeB = dbB.getSize();