MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / idxFinalize

Function idxFinalize

modules/dasSQLITE/sqlite/shell.c:10877–10880  ·  view source on GitHub ↗

** End of virtual table implementation. *************************************************************************/ ** Finalize SQL statement pStmt. If (*pRc) is SQLITE_OK when this function ** is called, set it to the return value of sqlite3_finalize() before ** returning. Otherwise, discard the sqlite3_finalize() return value. */

Source from the content-addressed store, hash-verified

10875** returning. Otherwise, discard the sqlite3_finalize() return value.
10876*/
10877static void idxFinalize(int *pRc, sqlite3_stmt *pStmt){
10878 int rc = sqlite3_finalize(pStmt);
10879 if( *pRc==SQLITE_OK ) *pRc = rc;
10880}
10881
10882/*
10883** Attempt to allocate an IdxTable structure corresponding to table zTab

Callers 9

idxGetTableInfoFunction · 0.85
idxFindCompatibleFunction · 0.85
idxFindIndexesFunction · 0.85
idxProcessOneTriggerFunction · 0.85
idxCreateVtabSchemaFunction · 0.85
idxLargestIndexFunction · 0.85
idxPopulateOneStat1Function · 0.85
idxPopulateStat1Function · 0.85
sqlite3_expert_newFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected