diff options
author | danielk1977 <danielk1977@noemail.net> | 2005-01-07 01:56:17 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2005-01-07 01:56:17 +0000 |
commit | dcd7c471cec9049887aeccd31e3aa7cc49b9e5ff (patch) | |
tree | ce0f04bc49eb66df0c944986f6d1bec2f4f60c58 /src | |
parent | 9d9f76c0b6f11a4b1b0b0bbf2645ed3f2ccde6af (diff) | |
download | sqlite-dcd7c471cec9049887aeccd31e3aa7cc49b9e5ff.tar.gz sqlite-dcd7c471cec9049887aeccd31e3aa7cc49b9e5ff.zip |
Remove incorrect assert() and add extra option to account for non-standard 'sort' program in some linux versions. (CVS 2179)
FossilOrigin-Name: bf14387697459d8d348a35ca50e2ee9407dcf1e1
Diffstat (limited to 'src')
-rw-r--r-- | src/vdbe.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vdbe.c b/src/vdbe.c index 711899e3d..e022d382d 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -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.435 2004/12/25 01:03:14 drh Exp $ +** $Id: vdbe.c,v 1.436 2005/01/07 01:56:17 danielk1977 Exp $ */ #include "sqliteInt.h" #include "os.h" @@ -2553,7 +2553,6 @@ case OP_MoveGt: { *pC->pIncrKey = oc==OP_MoveGt || oc==OP_MoveLe; if( pC->intKey ){ i64 iKey; - assert( !pOp->p3 ); Integerify(pTos); iKey = intToKey(pTos->i); if( pOp->p2==0 && pOp->opcode==OP_MoveGe ){ |