diff options
author | drh <drh@noemail.net> | 2017-04-14 12:27:45 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2017-04-14 12:27:45 +0000 |
commit | 7c88bcd473dbc96bc3147e10dbe4b7932c4cb3bb (patch) | |
tree | 4bcd8697806dd1a8b531e0cace479adc0f6a3426 /src | |
parent | d0a537100c7842364ca4d83537367f3734fed9e1 (diff) | |
download | sqlite-7c88bcd473dbc96bc3147e10dbe4b7932c4cb3bb.tar.gz sqlite-7c88bcd473dbc96bc3147e10dbe4b7932c4cb3bb.zip |
Remove an incorrect ALWAYS().
FossilOrigin-Name: f956f6ae6b0863c70c4a2b227338d5c332e87f2ec6f3fcdf2233c14c5b78ca2b
Diffstat (limited to 'src')
-rw-r--r-- | src/select.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/select.c b/src/select.c index 54265ab2a..3c35c7504 100644 --- a/src/select.c +++ b/src/select.c @@ -1690,7 +1690,7 @@ int sqlite3ColumnsFromExprList( pColExpr = pColExpr->pRight; assert( pColExpr!=0 ); } - if( pColExpr->op==TK_COLUMN && ALWAYS(pColExpr->pTab!=0) ){ + if( pColExpr->op==TK_COLUMN && pColExpr->pTab!=0 ){ /* For columns use the column name name */ int iCol = pColExpr->iColumn; pTab = pColExpr->pTab; |