Lines Matching refs:bPatchset
233445 int bPatchset; /* True if this is a patchset */ member
234176 int bPatchset, /* True if records are patchset records */ argument
234190 if( bPatchset==0 ){
234229 if( bPatchset==0
234339 int bPatchset, argument
234362 int bPkOnly = (p->op==SQLITE_DELETE && bPatchset);
236038 int bPatchset, /* True for "patchset", 0 for "changeset" */ argument
236102 if( bPatchset==0 ){
236112 if( bChanged || (bPatchset && abPK[i]) ){
236138 int bPatchset, /* True for "patchset", 0 for "changeset" */ argument
236148 if( bPatchset==0 ){
236395 int bPatchset, /* Use the patchset format if true */ argument
236400 sessionAppendByte(pBuf, (bPatchset ? 'P' : 'T'), pRc);
236418 int bPatchset, /* True for patchset, false for changeset */ argument
236466 sessionAppendTableHdr(&buf, bPatchset, pTab, &rc);
236492 rc = sessionAppendUpdate(&buf, bPatchset, pSel, p, pTab->abPK);
236495 rc = sessionAppendDelete(&buf, bPatchset, p, pTab->nCol,pTab->abPK);
237170 p->bPatchset = (op=='P');
237178 if( p->zTab==0 || (p->bPatchset && p->bInvert) ){
237195 if( p->bPatchset==0 && op==SQLITE_UPDATE ){
237197 }else if( p->bPatchset && op==SQLITE_DELETE ){
237212 if( p->op!=SQLITE_INSERT && (p->bPatchset==0 || p->op==SQLITE_DELETE) ){
237213 u8 *abPK = p->bPatchset ? p->abPK : 0;
237224 if( (p->bPatchset || p->bInvert) && p->op==SQLITE_UPDATE ){
237230 assert( p->bPatchset==0 || p->apValue[i]==0 );
237250 if( p->bPatchset==0 && p->op==SQLITE_UPDATE){
237712 int bPatchset, argument
237740 if( bPatchset ) p->aUpdateMask[nCol/32] |= (1<<(nCol%32));
237801 if( p->abPK[ii] || (bPatchset==0 && sessionChangesetOld(pIter, ii)) ){
238361 u8 *abPK = (pIter->bPatchset ? p->abPK : 0);
238383 int bPatchset = (pbRetry==0 || pIter->bPatchset); local
238385 rc = sessionUpdateFind(pIter, p, bPatchset, &pUp);
238391 if( p->abPK[i] || (bPatchset==0 && pOld) ){
238521 int bPatchset, argument
238540 pIter2->bPatchset = bPatchset;
238600 int bPatchset; local
238633 db, pIter->bPatchset, zTab, &sApply, xConflict, pCtx
238732 bPatchset = pIter->bPatchset;
238740 rc = sessionRetryConstraints(db, bPatchset, zTab, &sApply, xConflict, pCtx);
238774 if( rc==SQLITE_OK && bPatchset==0 && sApply.bRebase ){
239080 int bPatchset, /* True for patchsets */ argument
239207 if( bPatchset==0 ) sessionSkipRecord(&a1, pTab->nCol);
239212 if( bPatchset ){
239216 if( 0==sessionMergeUpdate(&aCsr, pTab, bPatchset, aExist,0,aRec,0) ){
239225 if( bPatchset==0 ){
239230 if( 0==sessionMergeUpdate(&aCsr, pTab, bPatchset, aRec, aExist,a1,a2) ){
239237 if( bPatchset ){
239535 pGrp->bPatch = pIter->bPatchset;
239536 }else if( pIter->bPatchset!=pGrp->bPatch ){
240025 if( pIter->bPatchset ){
240030 sessionAppendByte(&sOut, pIter->bPatchset ? 'P' : 'T', &rc);