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

Function idxProcessTriggers

lib-src/sqlite/shell.c:9674–9689  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9672}
9673
9674static int idxProcessTriggers(sqlite3expert *p, char **pzErr){
9675 int rc = SQLITE_OK;
9676 IdxWrite *pEnd = 0;
9677 IdxWrite *pFirst = p->pWrite;
9678
9679 while( rc==SQLITE_OK && pFirst!=pEnd ){
9680 IdxWrite *pIter;
9681 for(pIter=pFirst; rc==SQLITE_OK && pIter!=pEnd; pIter=pIter->pNext){
9682 rc = idxProcessOneTrigger(p, pIter, pzErr);
9683 }
9684 pEnd = pFirst;
9685 pFirst = p->pWrite;
9686 }
9687
9688 return rc;
9689}
9690
9691
9692static int idxCreateVtabSchema(sqlite3expert *p, char **pzErrmsg){

Callers 1

sqlite3_expert_analyzeFunction · 0.85

Calls 1

idxProcessOneTriggerFunction · 0.85

Tested by

no test coverage detected