summaryrefslogtreecommitdiff
path: root/cpp/src/FreezeScript/transformdb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/FreezeScript/transformdb.cpp')
-rw-r--r--cpp/src/FreezeScript/transformdb.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/cpp/src/FreezeScript/transformdb.cpp b/cpp/src/FreezeScript/transformdb.cpp
index 7ba7e07dec2..5e240d999b2 100644
--- a/cpp/src/FreezeScript/transformdb.cpp
+++ b/cpp/src/FreezeScript/transformdb.cpp
@@ -372,11 +372,9 @@ run(int argc, char** argv, const Ice::CommunicatorPtr& communicator)
}
//
- // Install the core types in the Slice units.
+ // Install the evictor types in the Slice units.
//
- FreezeScript::createCoreSliceTypes(oldUnit);
FreezeScript::createEvictorSliceTypes(oldUnit);
- FreezeScript::createCoreSliceTypes(newUnit);
FreezeScript::createEvictorSliceTypes(newUnit);
//
@@ -392,7 +390,7 @@ run(int argc, char** argv, const Ice::CommunicatorPtr& communicator)
string oldKeyName, newKeyName, oldValueName, newValueName;
if(evictor)
{
- oldKeyName = newKeyName = "::Freeze::EvictorStorageKey";
+ oldKeyName = newKeyName = "::Ice::Identity";
oldValueName = newValueName = "::Freeze::ObjectRecord";
}
else