1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-09-09 21:09:38 +03:00

Remove an unnecessary IN_RENAME_COLUMN macro from resolve.c.

FossilOrigin-Name: 5858c0bde7c210f07cfa72cee95325847b26733abab4f56301b57cd816931e97
This commit is contained in:
drh
2018-08-25 03:29:34 +00:00
parent da76adc085
commit 3a843f525c
3 changed files with 8 additions and 8 deletions

View File

@@ -802,7 +802,7 @@ static int resolveExprStep(Walker *pWalker, Expr *pExpr){
is_agg = 0;
}
#endif
else if( no_such_func && pParse->db->init.busy==0 && !IN_RENAME_COLUMN
else if( no_such_func && pParse->db->init.busy==0
#ifdef SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION
&& pParse->explain==0
#endif