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

Remove incorrect NEVER() macro in the previous check-in (6634). (CVS 6635)

FossilOrigin-Name: c684957991fe45cbcb188d2a419501c3f1fdc93f
This commit is contained in:
drh
2009-05-13 17:35:23 +00:00
parent 0449171e0c
commit b7f24de283
3 changed files with 9 additions and 9 deletions

View File

@@ -22,7 +22,7 @@
** COMMIT
** ROLLBACK
**
** $Id: build.c,v 1.542 2009/05/13 17:21:14 drh Exp $
** $Id: build.c,v 1.543 2009/05/13 17:35:23 drh Exp $
*/
#include "sqliteInt.h"
@@ -2610,7 +2610,7 @@ void sqlite3CreateIndex(
zColl = db->pDfltColl->zName;
}
}
if( NEVER(!db->init.busy && !sqlite3LocateCollSeq(pParse, zColl)) ){
if( !db->init.busy && !sqlite3LocateCollSeq(pParse, zColl) ){
goto exit_create_index;
}
pIndex->azColl[i] = zColl;