Added support for large field values (up to 4 GB), async and direct I/O on Linux and Solaris, and performed major code cleanup.
git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@213 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
@@ -331,7 +331,7 @@ FSTATIC void flmLogText(
|
||||
}
|
||||
|
||||
ucChar = *pucBuf;
|
||||
uiObjType = GedTextObjType( ucChar);
|
||||
uiObjType = flmTextObjType( ucChar);
|
||||
switch (uiObjType)
|
||||
{
|
||||
case ASCII_CHAR_CODE: // 0nnnnnnn
|
||||
@@ -546,7 +546,7 @@ FSTATIC void flmLogSubQuery(
|
||||
SUBQUERY * pSubQuery
|
||||
)
|
||||
{
|
||||
FQNODE_p pQNode;
|
||||
FQNODE * pQNode;
|
||||
QTYPES eCurrentOp;
|
||||
QTYPES eTmpParentOp;
|
||||
FLMBYTE * pucFromKey;
|
||||
@@ -623,7 +623,7 @@ FSTATIC void flmLogSubQuery(
|
||||
bIndentOptInfo = FALSE;
|
||||
pLogMsg->newline();
|
||||
uiIndent += 2;
|
||||
flmLogQuery( pLogMsg, uiIndent, (CURSOR_p)hCursor);
|
||||
flmLogQuery( pLogMsg, uiIndent, (CURSOR *)hCursor);
|
||||
uiIndent -= 2;
|
||||
flmLogIndent( pLogMsg, uiIndent);
|
||||
flmLogOperator( pLogMsg, FLM_RPAREN_OP, FALSE);
|
||||
@@ -844,7 +844,7 @@ Desc: This routine logs the query criteria for a cursor.
|
||||
void flmLogQuery(
|
||||
F_LogMessage * pLogMsg,
|
||||
FLMUINT uiIndent,
|
||||
CURSOR_p pCursor
|
||||
CURSOR * pCursor
|
||||
)
|
||||
{
|
||||
SUBQUERY * pSubQuery;
|
||||
|
||||
Reference in New Issue
Block a user