MCPcopy Create free account
hub / github.com/audacity/audacity / idxFinalize

Function idxFinalize

lib-src/sqlite/shell.c:9034–9037  ·  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

9032** returning. Otherwise, discard the sqlite3_finalize() return value.
9033*/
9034static void idxFinalize(int *pRc, sqlite3_stmt *pStmt){
9035 int rc = sqlite3_finalize(pStmt);
9036 if( *pRc==SQLITE_OK ) *pRc = rc;
9037}
9038
9039/*
9040** 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