diff options
author | drh <> | 2022-04-15 17:08:40 +0000 |
---|---|---|
committer | drh <> | 2022-04-15 17:08:40 +0000 |
commit | 22c4bc8991e45118d22a8bf818aad0191ee5979d (patch) | |
tree | ec62fc83ca844311b8032d53f378e8e8953183a1 /src/resolve.c | |
parent | a99e325468d0c46919cf8a88f7c0b5bb8a4987a8 (diff) | |
download | sqlite-22c4bc8991e45118d22a8bf818aad0191ee5979d.tar.gz sqlite-22c4bc8991e45118d22a8bf818aad0191ee5979d.zip |
The sqlite3ProcessJoin() routine converts a NATURAL JOIN into a JOIN USING so
that henceforth the NATURAL keyword can be ignored.
FossilOrigin-Name: 8378e1e0d289627fb294ccd3f5865ef49df3a42b8a5aa211e21be1b42d9da753
Diffstat (limited to 'src/resolve.c')
-rw-r--r-- | src/resolve.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/resolve.c b/src/resolve.c index ac00564da..ecc07b296 100644 --- a/src/resolve.c +++ b/src/resolve.c @@ -344,7 +344,6 @@ static int lookupName( ** USING clause, then skip this match. */ if( cnt==1 ){ - if( pItem->fg.jointype & JT_NATURAL ) continue; if( pItem->fg.isUsing && nameInUsingClause(pItem->u3.pUsing, zCol) ){ |