lbug 0.16.1

An in-process property graph database management system built for query speed and scalability
Documentation
#include "storage/storage_version_info.h"

namespace lbug {
namespace storage {

storage_version_t StorageVersionInfo::getStorageVersion() {
    auto storageVersionInfo = getStorageVersionInfo();
    if (!storageVersionInfo.contains(LBUG_CMAKE_VERSION)) {
        // If the current LBUG_CMAKE_VERSION is not in the map,
        // then we must run the newest version of lbug
        // LCOV_EXCL_START
        storage_version_t maxVersion = 0;
        for (auto& [_, versionNumber] : storageVersionInfo) {
            maxVersion = std::max(maxVersion, versionNumber);
        }
        return maxVersion;
        // LCOV_EXCL_STOP
    }
    return storageVersionInfo.at(LBUG_CMAKE_VERSION);
}

} // namespace storage
} // namespace lbug