Home | History | Annotate | Download | only in orig

Lines Matching defs:nullRow

15321   u8 nullRow;           /* True if pointing to a row with no data */
26362 /* 105 */ "NullRow" OpHelp(""),
69542 if( isDifferentRow ) p->nullRow = 1;
75266 assert( pCrsr!=0 || pC->nullRow ); /* pC->nullRow on PseudoTables */
75272 if( pC->nullRow ){
76274 pCur->nullRow = 1;
76334 pCx->nullRow = 1;
76433 pCx->nullRow = 1;
76566 pC->nullRow = 0;
76716 pC->nullRow = 0;
76852 pC->nullRow = 1-alreadyExists;
76907 pC->nullRow = 0;
77299 ** us from having to issue a separate NullRow instruction to clear that cache.
77353 assert( pC->nullRow==0 );
77424 assert( pC->pseudoTableReg==0 || pC->nullRow );
77425 if( pC->nullRow ){
77442 if( pC->nullRow ){
77453 /* Opcode: NullRow P1 * * * *
77465 pC->nullRow = 1;
77497 pC->nullRow = (u8)res;
77567 pC->nullRow = (u8)res;
77680 pC->nullRow = 0;
77687 pC->nullRow = 1;
77813 if( !pC->nullRow ){
79185 pCur->nullRow = 0;
79211 if( pCur->nullRow ){
79253 if( pCur->nullRow ){
93755 /* nullRow[] is an OP_Record encoding of a row containing 5 NULLs */
93756 static const char nullRow[] = { 6, 0, 0, 0, 0, 0 };
93801 sqlite3VdbeAddOp4(v, OP_Blob, 6, reg3, 0, nullRow, P4_STATIC);