From cf5112467c0836d14eecc650e24444e95e8f699b Mon Sep 17 00:00:00 2001 From: Scott Kyle Date: Wed, 27 Apr 2016 14:00:34 -0700 Subject: [PATCH] Fix InvalidSchemaVersionException message --- src/object_store.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/object_store.cpp b/src/object_store.cpp index 8e9cbf95..56dd3d84 100644 --- a/src/object_store.cpp +++ b/src/object_store.cpp @@ -505,7 +505,7 @@ bool ObjectStore::is_empty(const Group *group) { InvalidSchemaVersionException::InvalidSchemaVersionException(uint64_t old_version, uint64_t new_version) : m_old_version(old_version), m_new_version(new_version) { - m_what = "Provided schema version " + util::to_string(old_version) + " is less than last set version " + util::to_string(new_version) + "."; + m_what = "Provided schema version " + util::to_string(new_version) + " is less than last set version " + util::to_string(old_version) + "."; } DuplicatePrimaryKeyValueException::DuplicatePrimaryKeyValueException(std::string const& object_type, Property const& property) :