diff options
author | drh <> | 2022-04-11 14:26:37 +0000 |
---|---|---|
committer | drh <> | 2022-04-11 14:26:37 +0000 |
commit | c583719b65d2fca51178d40826f3b325329fe12a (patch) | |
tree | a041e6390ad648c12e9458b147de2004a1dba929 /src/sqliteInt.h | |
parent | 37259f4e6b5c4645aa732b0e2c7dada27c3f3259 (diff) | |
download | sqlite-c583719b65d2fca51178d40826f3b325329fe12a.tar.gz sqlite-c583719b65d2fca51178d40826f3b325329fe12a.zip |
Show LEFT and RIGHT JOIN processing in the EXPLAIN QUERY PLAN output.
FossilOrigin-Name: d91faeffea5cf0585fb71e5311fdcc6b8be85c7e9c732050b4448e617c970101
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index b9eb970c7..330d58fa4 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3163,7 +3163,7 @@ struct SrcList { #define WHERE_SORTBYGROUP 0x0200 /* Support sqlite3WhereIsSorted() */ #define WHERE_AGG_DISTINCT 0x0400 /* Query is "SELECT agg(DISTINCT ...)" */ #define WHERE_ORDERBY_LIMIT 0x0800 /* ORDERBY+LIMIT on the inner loop */ - /* 0x1000 not currently used */ +#define WHERE_RIGHT_JOIN 0x1000 /* Processing a RIGHT JOIN */ /* 0x2000 not currently used */ #define WHERE_USE_LIMIT 0x4000 /* Use the LIMIT in cost estimates */ /* 0x8000 not currently used */ |