1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Add a comment to restriction (6) of the push-down optimization. No changes

to code.

FossilOrigin-Name: 0c8a2f257fb71b2b053c4a2028db063e92dd9ff585a17fa22a70f9223fb11e75
This commit is contained in:
drh
2018-07-09 20:58:43 +00:00
parent f710345303
commit 142066d4b0
3 changed files with 8 additions and 8 deletions

View File

@@ -4157,7 +4157,7 @@ static int pushDownWhereTerms(
if( pSubq->selFlags & SF_Recursive ) return 0; /* restriction (2) */
#ifndef SQLITE_OMIT_WINDOWFUNC
if( pSubq->pWin ) return 0;
if( pSubq->pWin ) return 0; /* restriction (6) */
#endif
#ifdef SQLITE_DEBUG