SQL changes. Updated everything so that it builds on Windows and uses the new FTK interfaces.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@674 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-07-17 20:35:20 +00:00
parent e18750d9eb
commit dae150e693
32 changed files with 427 additions and 1373 deletions

View File

@@ -25,7 +25,7 @@
#include "flaimsys.h"
FSTATIC RCODE flmBackgroundIndexBuildThrd(
FSTATIC RCODE FLMAPI flmBackgroundIndexBuildThrd(
IF_Thread * pThread);
/****************************************************************************
@@ -816,7 +816,6 @@ RCODE F_Db::backgroundIndexBuild(
m_uiFlags |= FDB_BACKGROUND_INDEXING;
uiIndexNum = pBackgroundIx->indexStatus.uiIndexNum;
m_pSFileHdl->enableFlushMinimize();
for (;;)
{
@@ -909,8 +908,6 @@ RCODE F_Db::backgroundIndexBuild(
goto Exit;
}
pThread->setThreadStatus( FLM_THREAD_STATUS_COMMITTING_TRANS);
// Commit the transaction (even if we didn't do any indexing work).
bStartedTrans = FALSE;
@@ -943,7 +940,7 @@ Desc: Thread that will build an index in the background.
Caller will create a pDb to use. This pDb must be
freed at the conclusion of the routine.
****************************************************************************/
FSTATIC RCODE flmBackgroundIndexBuildThrd(
FSTATIC RCODE FLMAPI flmBackgroundIndexBuildThrd(
IF_Thread * pThread)
{
RCODE rc = NE_SFLM_OK;