1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Changes to make regression tests in rowid.test pass. (CVS 1373)

FossilOrigin-Name: 790226c94493a6d58a7e52fd3ed35ef495fab11e
This commit is contained in:
danielk1977
2004-05-13 13:38:52 +00:00
parent 50ce750c2a
commit e7c8d58a1f
5 changed files with 14 additions and 15 deletions

View File

@@ -43,7 +43,7 @@
** in this file for details. If in doubt, do not deviate from existing
** commenting and indentation practices when changing or adding code.
**
** $Id: vdbe.c,v 1.286 2004/05/13 11:34:16 danielk1977 Exp $
** $Id: vdbe.c,v 1.287 2004/05/13 13:38:52 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -3227,7 +3227,7 @@ case OP_PutStrKey: {
if( ((pC = &p->aCsr[i])->pCursor!=0 || pC->pseudoTable) ){
char *zKey;
i64 nKey;
int iKey;
i64 iKey;
if( pOp->opcode==OP_PutStrKey ){
Stringify(pNos);
nKey = pNos->n;