1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Fix develop build breakages

This commit is contained in:
Andrew Hutchings
2019-08-29 09:44:14 +01:00
parent 6241b5144c
commit 4f86b0f909
2 changed files with 2 additions and 1 deletions

View File

@ -16,6 +16,7 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA. */ MA 02110-1301, USA. */
#include <typeinfo>
#include "ha_calpont.h" #include "ha_calpont.h"
#include "columnstoreversion.h" #include "columnstoreversion.h"

View File

@ -669,7 +669,7 @@ void Synchronizer::synchronizeWithJournal(const string &sourceFile, list<string>
count += err; count += err;
} }
numBytesWritten += size; numBytesWritten += size;
assert(bf::file_size(oldCachePath) == MetadataFile:getLengthFromKey(cloudKey)); assert(bf::file_size(oldCachePath) == MetadataFile::getLengthFromKey(cloudKey));
cache->rename(prefix, cloudKey, newCloudKey, size - MetadataFile::getLengthFromKey(cloudKey)); cache->rename(prefix, cloudKey, newCloudKey, size - MetadataFile::getLengthFromKey(cloudKey));
replicator->remove(oldCachePath); replicator->remove(oldCachePath);
} }