Latest round of changes for SQL query optimization.
git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@709 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
@@ -2141,7 +2141,7 @@ RCODE F_Db::dictReadEncDefs( void)
|
||||
}
|
||||
|
||||
if (RC_BAD( rc = pTableCursor->setupRange( this, SFLM_TBLNUM_ENCDEFS,
|
||||
1, FLM_MAX_UINT64, NULL, NULL, NULL)))
|
||||
1, FLM_MAX_UINT64, FALSE)))
|
||||
{
|
||||
goto Exit;
|
||||
}
|
||||
@@ -2298,7 +2298,7 @@ RCODE F_Db::dictReadTables( void)
|
||||
}
|
||||
|
||||
if (RC_BAD( rc = pTableCursor->setupRange( this, SFLM_TBLNUM_TABLES,
|
||||
1, FLM_MAX_UINT64, NULL, NULL, NULL)))
|
||||
1, FLM_MAX_UINT64, FALSE)))
|
||||
{
|
||||
goto Exit;
|
||||
}
|
||||
@@ -2430,7 +2430,7 @@ RCODE F_Db::dictReadColumns( void)
|
||||
}
|
||||
|
||||
if (RC_BAD( rc = pTableCursor->setupRange( this, SFLM_TBLNUM_COLUMNS,
|
||||
1, FLM_MAX_UINT64, NULL, NULL, NULL)))
|
||||
1, FLM_MAX_UINT64, FALSE)))
|
||||
{
|
||||
goto Exit;
|
||||
}
|
||||
@@ -2662,7 +2662,7 @@ RCODE F_Db::dictReadIndexes( void)
|
||||
}
|
||||
|
||||
if (RC_BAD( rc = pTableCursor->setupRange( this, SFLM_TBLNUM_INDEXES,
|
||||
1, FLM_MAX_UINT64, NULL, NULL, NULL)))
|
||||
1, FLM_MAX_UINT64, FALSE)))
|
||||
{
|
||||
goto Exit;
|
||||
}
|
||||
@@ -3033,7 +3033,7 @@ RCODE F_Db::dictReadIndexComponents( void)
|
||||
}
|
||||
|
||||
if (RC_BAD( rc = pTableCursor->setupRange( this, SFLM_TBLNUM_INDEX_COMPONENTS,
|
||||
1, FLM_MAX_UINT64, NULL, NULL, NULL)))
|
||||
1, FLM_MAX_UINT64, FALSE)))
|
||||
{
|
||||
goto Exit;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user