mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-11 01:42:22 +03:00
Fix references to "SrcList_item" in comments as that object has since
[bfd5bf2c73110fcb] (2021-02-21) been called "SrcItem". Comment changes only. No changes to code. FossilOrigin-Name: e3648a07f5607dbd4d6ad5b6e5a62a4a1d0b173d3f22aa36c74b768281fc86d8
This commit is contained in:
@@ -4619,7 +4619,7 @@ static int flattenSubquery(
|
||||
pSub->pLimit = 0;
|
||||
}
|
||||
|
||||
/* Recompute the SrcList_item.colUsed masks for the flattened
|
||||
/* Recompute the SrcItem.colUsed masks for the flattened
|
||||
** tables. */
|
||||
for(i=0; i<nSubSrc; i++){
|
||||
recomputeColumnsUsed(pParent, &pSrc->a[i+iFrom]);
|
||||
@@ -5607,9 +5607,9 @@ void sqlite3SelectPopWith(Walker *pWalker, Select *p){
|
||||
#endif
|
||||
|
||||
/*
|
||||
** The SrcList_item structure passed as the second argument represents a
|
||||
** The SrcItem structure passed as the second argument represents a
|
||||
** sub-query in the FROM clause of a SELECT statement. This function
|
||||
** allocates and populates the SrcList_item.pTab object. If successful,
|
||||
** allocates and populates the SrcItem.pTab object. If successful,
|
||||
** SQLITE_OK is returned. Otherwise, if an OOM error is encountered,
|
||||
** SQLITE_NOMEM.
|
||||
*/
|
||||
@@ -6442,7 +6442,7 @@ static void havingToWhere(Parse *pParse, Select *p){
|
||||
|
||||
/*
|
||||
** Check to see if the pThis entry of pTabList is a self-join of a prior view.
|
||||
** If it is, then return the SrcList_item for the prior view. If it is not,
|
||||
** If it is, then return the SrcItem for the prior view. If it is not,
|
||||
** then return 0.
|
||||
*/
|
||||
static SrcItem *isSelfJoinView(
|
||||
|
||||
Reference in New Issue
Block a user