diff options
author | drh <> | 2022-04-19 19:51:51 +0000 |
---|---|---|
committer | drh <> | 2022-04-19 19:51:51 +0000 |
commit | 4d0d071a53d02015f7411ba8832f191b2e91b71a (patch) | |
tree | 098f0acec3076e8f01c05501ae4e3e9583375313 /src | |
parent | 3117b7b081d782c5da91da94a03cf135ed05533d (diff) | |
download | sqlite-4d0d071a53d02015f7411ba8832f191b2e91b71a.tar.gz sqlite-4d0d071a53d02015f7411ba8832f191b2e91b71a.zip |
Improved comment on the JF_LTORJ constant definition.
FossilOrigin-Name: e0744da95fc010dc3a2e030ff491bcfa08a18691ee6ebc7d4e8aab3850f56eec
Diffstat (limited to 'src')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 9363adbb9..56b885906 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3151,10 +3151,10 @@ struct SrcList { #define JT_LEFT 0x08 /* Left outer join */ #define JT_RIGHT 0x10 /* Right outer join */ #define JT_OUTER 0x20 /* The "OUTER" keyword is present */ -#define JT_LTORJ 0x40 /* One of the LEFT operands of a RIGHT JOIN */ +#define JT_LTORJ 0x40 /* One of the LEFT operands of a RIGHT JOIN + ** Mnemonic: Left Table Of Right Join */ #define JT_ERROR 0x80 /* unknown or unsupported join type */ - /* ** Flags appropriate for the wctrlFlags parameter of sqlite3WhereBegin() ** and the WhereInfo.wctrlFlags member. |