Lines Matching defs:nullRow
15321 u8 nullRow; /* True if pointing to a row with no data */
26362 /* 105 */ "NullRow" OpHelp(""),
69560 if( isDifferentRow ) p->nullRow = 1;
75284 assert( pCrsr!=0 || pC->nullRow ); /* pC->nullRow on PseudoTables */
75290 if( pC->nullRow ){
76292 pCur->nullRow = 1;
76352 pCx->nullRow = 1;
76451 pCx->nullRow = 1;
76584 pC->nullRow = 0;
76734 pC->nullRow = 0;
76870 pC->nullRow = 1-alreadyExists;
76925 pC->nullRow = 0;
77317 ** us from having to issue a separate NullRow instruction to clear that cache.
77371 assert( pC->nullRow==0 );
77442 assert( pC->pseudoTableReg==0 || pC->nullRow );
77443 if( pC->nullRow ){
77460 if( pC->nullRow ){
77471 /* Opcode: NullRow P1 * * * *
77483 pC->nullRow = 1;
77515 pC->nullRow = (u8)res;
77585 pC->nullRow = (u8)res;
77698 pC->nullRow = 0;
77705 pC->nullRow = 1;
77831 if( !pC->nullRow ){
79203 pCur->nullRow = 0;
79229 if( pCur->nullRow ){
79271 if( pCur->nullRow ){
93773 /* nullRow[] is an OP_Record encoding of a row containing 5 NULLs */
93774 static const char nullRow[] = { 6, 0, 0, 0, 0, 0 };
93819 sqlite3VdbeAddOp4(v, OP_Blob, 6, reg3, 0, nullRow, P4_STATIC);