summaryrefslogtreecommitdiff
path: root/cpp/src/FreezeScript/transformdb.cpp
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2004-04-12 19:39:53 +0000
committerMark Spruiell <mes@zeroc.com>2004-04-12 19:39:53 +0000
commite9fb104368ac5aa34d0901b22af01e881237b094 (patch)
tree24becd70eac8666968a19475418047bf25ab6384 /cpp/src/FreezeScript/transformdb.cpp
parentSwitched to a single database file with multiple databases (diff)
downloadice-e9fb104368ac5aa34d0901b22af01e881237b094.tar.bz2
ice-e9fb104368ac5aa34d0901b22af01e881237b094.tar.xz
ice-e9fb104368ac5aa34d0901b22af01e881237b094.zip
facet fixes for FreezeScript
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