1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Remove an unreachable branch.

FossilOrigin-Name: 4c976f171342ba2d39779279c28f3bc088572c440922e3e4421a3bf541263360
This commit is contained in:
drh
2019-01-24 04:44:54 +00:00
parent b4738ddb20
commit 6a02f237e3
3 changed files with 11 additions and 9 deletions

View File

@@ -116,7 +116,9 @@ int sqlite3WalkSelectExpr(Walker *pWalker, Select *p){
{
Parse *pParse = pWalker->pParse;
if( pParse && IN_RENAME_OBJECT ){
if( walkWindowList(pWalker, p->pWinDefn) ) return WRC_Abort;
int rc = walkWindowList(pWalker, p->pWinDefn);
assert( rc==WRC_Continue );
return rc;
}
}
#endif