Searched defs:Upsert (Results 1 – 1 of 1) sorted by relevance
15789 typedef struct Upsert Upsert; typedef19917 struct Upsert { struct19918 ExprList *pUpsertTarget; /* Optional description of conflict target */ argument19919 Expr *pUpsertTargetWhere; /* WHERE clause for partial index targets */ argument19920 ExprList *pUpsertSet; /* The SET clause from an ON CONFLICT UPDATE */ argument19921 Expr *pUpsertWhere; /* WHERE clause for the ON CONFLICT UPDATE */ argument19922 Upsert *pNextUpsert; /* Next ON CONFLICT clause in the list */ argument19924 u8 isDup; /* True if 2nd or later with same pUpsertIdx */ argument19927 void *pToFree; /* Free memory when deleting the Upsert object */ argument19933 Index *pUpsertIdx; /* UNIQUE constraint specified by pUpsertTarget */ argument[all …]