Lines Matching defs:orconf

347   pTriggerStep->orconf = OE_Default;
388 u8 orconf /* The conflict algorithm (OE_Abort, OE_Replace, etc.) */
400 pTriggerStep->orconf = orconf;
420 u8 orconf /* The conflict algorithm. (OE_Abort, OE_Ignore, etc) */
428 pTriggerStep->orconf = orconf;
450 pTriggerStep->orconf = OE_Default;
695 int orconf /* Conflict algorithm. (OE_Abort, etc) */
718 pParse->eOrconf = (orconf==OE_Default)?pStep->orconf:(u8)orconf;
800 ** implementing trigger pTrigger with ON CONFLICT policy orconf.
806 int orconf /* ON CONFLICT policy to code trigger program with */
832 pPrg->orconf = orconf;
852 pTrigger->zName, onErrorText(orconf),
880 codeTriggerProgram(pSubParse, pTrigger->step_list, orconf);
887 VdbeComment((v, "End: %s.%s", pTrigger->zName, onErrorText(orconf)));
910 ** trigger pTrigger with default ON CONFLICT algorithm orconf. If no such
918 int orconf /* ON CONFLICT algorithm. */
930 pPrg && (pPrg->pTrigger!=pTrigger || pPrg->orconf!=orconf);
936 pPrg = codeRowTrigger(pParse, pTrigger, pTab, orconf);
944 ** table pTab. The reg, orconf and ignoreJump parameters passed to this
953 int orconf, /* ON CONFLICT policy */
958 pPrg = getRowTrigger(pParse, p, pTab, orconf);
969 (v, "Call: %s.%s", (p->zName?p->zName:"fkey"), onErrorText(orconf)));
1015 ** Parameter orconf is the default conflict resolution algorithm for the
1028 int orconf, /* ON CONFLICT policy */
1052 sqlite3CodeRowTriggerDirect(pParse, p, pTab, reg, orconf, ignoreJump);
1089 int orconf /* Default ON CONFLICT policy for trigger steps */
1101 pPrg = getRowTrigger(pParse, p, pTab, orconf);