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

Function idxProcessTriggers

modules/dasSQLITE/sqlite/shell.c:11577–11592  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11575}
11576
11577static int idxProcessTriggers(sqlite3expert *p, char **pzErr){
11578 int rc = SQLITE_OK;
11579 IdxWrite *pEnd = 0;
11580 IdxWrite *pFirst = p->pWrite;
11581
11582 while( rc==SQLITE_OK && pFirst!=pEnd ){
11583 IdxWrite *pIter;
11584 for(pIter=pFirst; rc==SQLITE_OK && pIter!=pEnd; pIter=pIter->pNext){
11585 rc = idxProcessOneTrigger(p, pIter, pzErr);
11586 }
11587 pEnd = pFirst;
11588 pFirst = p->pWrite;
11589 }
11590
11591 return rc;
11592}
11593
11594
11595static int idxCreateVtabSchema(sqlite3expert *p, char **pzErrmsg){

Callers 1

sqlite3_expert_analyzeFunction · 0.85

Calls 1

idxProcessOneTriggerFunction · 0.85

Tested by

no test coverage detected