1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Removed redundant assert(). (CVS 5773)

FossilOrigin-Name: 486b1124f76bcf0505b6be908f2a3e988ad6e05d
This commit is contained in:
shane
2008-10-07 01:18:59 +00:00
parent b1c685b0c8
commit 359a8f80f1
3 changed files with 9 additions and 10 deletions

View File

@@ -12,7 +12,7 @@
** This file contains C code routines that are called by the parser
** to handle SELECT statements in SQLite.
**
** $Id: select.c,v 1.478 2008/10/06 16:18:40 danielk1977 Exp $
** $Id: select.c,v 1.479 2008/10/07 01:18:59 shane Exp $
*/
#include "sqliteInt.h"
@@ -81,7 +81,6 @@ Select *sqlite3SelectNew(
pNew->pOrderBy = pOrderBy;
pNew->selFlags = isDistinct ? SF_Distinct : 0;
pNew->op = TK_SELECT;
assert( pOffset==0 || pLimit!=0 );
pNew->pLimit = pLimit;
pNew->pOffset = pOffset;
pNew->addrOpenEphm[0] = -1;