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

More bug fixes in the ON CONFLICT enhancement. (CVS 357)

FossilOrigin-Name: 8229b5f6a348a56432a4a609ee125520c5831973
This commit is contained in:
drh
2002-01-30 00:54:55 +00:00
parent 0ca3e24b2e
commit bb37fdc782
5 changed files with 161 additions and 12 deletions

View File

@@ -30,7 +30,7 @@
** But other routines are also provided to help in building up
** a program instruction by instruction.
**
** $Id: vdbe.c,v 1.110 2002/01/29 23:07:02 drh Exp $
** $Id: vdbe.c,v 1.111 2002/01/30 00:54:56 drh Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -1211,6 +1211,7 @@ case OP_String: {
** P1 elements are popped off of the top of stack and discarded.
*/
case OP_Pop: {
assert( p->tos+1>=pOp->p1 );
PopStack(p, pOp->p1);
break;
}