|
|
|
@ -9403,7 +9403,7 @@ struct Cursor {
|
|
|
|
|
u8 *pIncrKey; /* Pointer to pKeyInfo->incrKey */
|
|
|
|
|
KeyInfo *pKeyInfo; /* Info about index keys needed by index cursors */
|
|
|
|
|
int nField; /* Number of fields in the header */
|
|
|
|
|
i64 setqCount; /* Sequence counter */
|
|
|
|
|
i64 setCount; /* Sequence counter */
|
|
|
|
|
sqlite3_vtab_cursor *pVtabCursor; /* The cursor for a virtual table */
|
|
|
|
|
const sqlite3_module *pModule; /* Module for cursor pVtabCursor */
|
|
|
|
|
|
|
|
|
@ -36767,7 +36767,7 @@ case OP_Sequence: {
|
|
|
|
|
assert( i>=0 && i<p->nCursor );
|
|
|
|
|
assert( p->apCsr[i]!=0 );
|
|
|
|
|
pTos++;
|
|
|
|
|
pTos->u.i = p->apCsr[i]->setqCount++;
|
|
|
|
|
pTos->u.i = p->apCsr[i]->setCount++;
|
|
|
|
|
pTos->flags = MEM_Int;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|