1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-12-24 14:17:58 +03:00

Remove incorrect assert() and add extra option to account for non-standard 'sort' program in some linux versions. (CVS 2179)

FossilOrigin-Name: bf14387697459d8d348a35ca50e2ee9407dcf1e1
This commit is contained in:
danielk1977
2005-01-07 01:56:17 +00:00
parent 9d9f76c0b6
commit dcd7c471ce
4 changed files with 11 additions and 12 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.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 ){