File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 11devel
22-----
33
4+ * Allow startup of arangod with an existing database directory that was missing
5+ the ZkdIndex column family.
6+
47* Truncate must not trigger intermediate commits while in a streaming
58 transaction, because that would be against the assumption that
69 streaming transactions never do intermediate commits.
Original file line number Diff line number Diff line change @@ -747,7 +747,7 @@ void RocksDBEngine::start() {
747747 auto const replicatedLogsName = RocksDBColumnFamilyManager::name (
748748 RocksDBColumnFamilyManager::Family::ReplicatedLogs);
749749 auto const zkdIndexName = RocksDBColumnFamilyManager::name (
750- RocksDBColumnFamilyManager::Family::ReplicatedLogs );
750+ RocksDBColumnFamilyManager::Family::ZkdIndex );
751751
752752 for (auto const & it : cfFamilies) {
753753 auto it2 = std::find (existingColumnFamilies.begin (),
You can’t perform that action at this time.
0 commit comments