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:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user