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

Fix a typo in a comment. No changes to code.

FossilOrigin-Name: d4813a8d813f234e819f8ebefbd3ff96d3d69593cc7d716cf0ad6c1a126da827
This commit is contained in:
drh
2019-12-30 20:42:17 +00:00
parent 9d41af23a4
commit 8d95ed789e
3 changed files with 9 additions and 9 deletions

View File

@@ -3858,7 +3858,7 @@ static int flattenSubquery(
if( (pSub1->selFlags & (SF_Distinct|SF_Aggregate))!=0 /* (17b) */
|| (pSub1->pPrior && pSub1->op!=TK_ALL) /* (17a) */
|| pSub1->pSrc->nSrc<1 /* (17c) */
|| pSub1->pWin /* (17d) */
|| pSub1->pWin /* (17e) */
){
return 0;
}