First set of changes needed for bugzilla bug #145076. Added ability to keep a field id table for level one fields.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@204 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
dsandersoremutah
2006-03-23 17:37:47 +00:00
parent 77fdc5ed76
commit 537e33bf24
12 changed files with 1145 additions and 28 deletions

View File

@@ -1483,8 +1483,7 @@ RCODE flmSetIxTrackerInfo(
pRecord->setID( uiIndexNum);
pRecord->setContainerID( FLM_TRACKER_CONTAINER);
if( RC_BAD( rc = flmRcaInsertRec( pDb, FLM_TRACKER_CONTAINER,
uiIndexNum, pRecord)))
if( RC_BAD( rc = flmRcaInsertRec( pDb, pLFile, uiIndexNum, pRecord)))
{
goto Exit;
}
@@ -2367,8 +2366,7 @@ FSTATIC RCODE flmFreeIndexBlocks(
goto Exit;
}
if( RC_BAD( rc = flmRcaInsertRec( pDb, FLM_TRACKER_CONTAINER,
uiDrn, pRec)))
if( RC_BAD( rc = flmRcaInsertRec( pDb, pTrackerLFile, uiDrn, pRec)))
{
goto Exit;
}
@@ -2856,8 +2854,7 @@ FSTATIC RCODE flmModifyTrackerRec(
pRecord->setID( uiDrn);
pRecord->setContainerID( FLM_TRACKER_CONTAINER);
if( RC_BAD( rc = flmRcaInsertRec( pDb, FLM_TRACKER_CONTAINER,
uiDrn, pRecord)))
if( RC_BAD( rc = flmRcaInsertRec( pDb, pLFile, uiDrn, pRecord)))
{
goto Exit;
}