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

Add the "3" in the name of the sqlite3ProcessJoin() function.

FossilOrigin-Name: b925f72b6f679c61b0d6be16fabe64dc7605550b7bd86f35c586dcecd8217673
This commit is contained in:
drh
2022-04-15 15:15:01 +00:00
parent a51379ad78
commit 358424aeff
3 changed files with 9 additions and 9 deletions

View File

@@ -493,7 +493,7 @@ static void unsetJoinExpr(Expr *p, int iTable){
**
** This routine returns the number of errors encountered.
*/
static int sqliteProcessJoin(Parse *pParse, Select *p){
static int sqlite3ProcessJoin(Parse *pParse, Select *p){
SrcList *pSrc; /* All tables in the FROM clause */
int i, j; /* Loop counters */
SrcItem *pLeft; /* Left table being joined */
@@ -5667,7 +5667,7 @@ static int selectExpander(Walker *pWalker, Select *p){
/* Process NATURAL keywords, and ON and USING clauses of joins.
*/
assert( db->mallocFailed==0 || pParse->nErr!=0 );
if( pParse->nErr || sqliteProcessJoin(pParse, p) ){
if( pParse->nErr || sqlite3ProcessJoin(pParse, p) ){
return WRC_Abort;
}