aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <>2022-04-15 15:15:01 +0000
committerdrh <>2022-04-15 15:15:01 +0000
commit358424aeff71bc8b38053b822091f4c6532ec5b1 (patch)
tree713bf537b5a7a26cda072c6267ab51aac68c22c9 /src
parenta51379ad78864ba32b0f7afc5bbde5c774239a5e (diff)
downloadsqlite-358424aeff71bc8b38053b822091f4c6532ec5b1.tar.gz
sqlite-358424aeff71bc8b38053b822091f4c6532ec5b1.zip
Add the "3" in the name of the sqlite3ProcessJoin() function.
FossilOrigin-Name: b925f72b6f679c61b0d6be16fabe64dc7605550b7bd86f35c586dcecd8217673
Diffstat (limited to 'src')
-rw-r--r--src/select.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/select.c b/src/select.c
index 2e5c1ac97..d7d289ef5 100644
--- a/src/select.c
+++ b/src/select.c
@@ -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;
}