1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Remove an ALWAYS() that turns out to be reachable.

FossilOrigin-Name: 12bb75d9edc4c11de58d8b1105b95366c58ac4daaa9ad659499dded89a0d7cb5
This commit is contained in:
drh
2020-07-31 02:07:16 +00:00
parent 1991888238
commit 41af5b34bb
3 changed files with 8 additions and 8 deletions

View File

@@ -5947,7 +5947,7 @@ static int allocateBtreePage(
*/
#ifndef SQLITE_OMIT_AUTOVACUUM
if( eMode==BTALLOC_EXACT ){
if( ALWAYS(nearby<=mxPage) ){
if( nearby<=mxPage ){
u8 eType;
assert( nearby>0 );
assert( pBt->autoVacuum );