Fix unintended renaming

pull/1/head
Darrell Anderson 11 years ago
parent f1ce972ed0
commit 98087078dd

@ -3020,7 +3020,7 @@ case OP_Sequence: {
assert( i>=0 && i<p->nCursor ); assert( i>=0 && i<p->nCursor );
assert( p->apCsr[i]!=0 ); assert( p->apCsr[i]!=0 );
pTos++; pTos++;
pTos->i = p->apCsr[i]->setqCount++; pTos->i = p->apCsr[i]->setCount++;
pTos->flags = MEM_Int; pTos->flags = MEM_Int;
break; break;
} }

@ -81,7 +81,7 @@ struct Cursor {
u8 *pIncrKey; /* Pointer to pKeyInfo->incrKey */ u8 *pIncrKey; /* Pointer to pKeyInfo->incrKey */
KeyInfo *pKeyInfo; /* Info about index keys needed by index cursors */ KeyInfo *pKeyInfo; /* Info about index keys needed by index cursors */
int nField; /* Number of fields in the header */ int nField; /* Number of fields in the header */
i64 setqCount; /* Sequence counter */ i64 setCount; /* Sequence counter */
/* Cached information about the header for the data record that the /* Cached information about the header for the data record that the
** cursor is currently pointing to. Only valid if cacheValid is true. ** cursor is currently pointing to. Only valid if cacheValid is true.

Loading…
Cancel
Save