diff options
author | drh <> | 2021-02-21 21:04:54 +0000 |
---|---|---|
committer | drh <> | 2021-02-21 21:04:54 +0000 |
commit | 7601294ad3fe9f7e0db8eb2478dec0de293b8bb6 (patch) | |
tree | 2d4dbe7b6480ada5a7fab36469bb114995e096a6 /src/insert.c | |
parent | 5abe1d3d536f36dcb0964ff468a229382ce9858a (diff) | |
download | sqlite-7601294ad3fe9f7e0db8eb2478dec0de293b8bb6.tar.gz sqlite-7601294ad3fe9f7e0db8eb2478dec0de293b8bb6.zip |
Rename the "struct SrcList_item" object to the more succinct "SrcItem".
This is a symbolic change only. The logic is unmodified.
FossilOrigin-Name: bfd5bf2c73110fcb36db9ba2a949ff516131fbd3e89325f88fe9f5c2b4ed87b2
Diffstat (limited to 'src/insert.c')
-rw-r--r-- | src/insert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/insert.c b/src/insert.c index 646864ee6..f0b93ae37 100644 --- a/src/insert.c +++ b/src/insert.c @@ -2684,7 +2684,7 @@ static int xferOptimization( ExprList *pEList; /* The result set of the SELECT */ Table *pSrc; /* The table in the FROM clause of SELECT */ Index *pSrcIdx, *pDestIdx; /* Source and destination indices */ - struct SrcList_item *pItem; /* An element of pSelect->pSrc */ + SrcItem *pItem; /* An element of pSelect->pSrc */ int i; /* Loop counter */ int iDbSrc; /* The database of pSrc */ int iSrc, iDest; /* Cursors from source and destination */ |