diff options
author | drh <drh@noemail.net> | 2002-05-25 00:18:20 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2002-05-25 00:18:20 +0000 |
commit | 195e6967fb489401471c7ab99e3c4042d07347f4 (patch) | |
tree | 41d1a548d97a4bef7a7232f7dfc6414a9c57c137 /src/sqliteInt.h | |
parent | ad2d8307aceaab85fbf827338bb8274dbf7c36de (diff) | |
download | sqlite-195e6967fb489401471c7ab99e3c4042d07347f4.tar.gz sqlite-195e6967fb489401471c7ab99e3c4042d07347f4.zip |
Additional testing of LEFT OUTER JOIN. (CVS 588)
FossilOrigin-Name: d8d04c14f18d1feba89ccea0be70530a18248c51
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index d323174e7..77cfe6282 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.115 2002/05/24 20:31:37 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.116 2002/05/25 00:18:21 drh Exp $ */ #include "sqlite.h" #include "hash.h" @@ -461,9 +461,8 @@ struct SrcList { */ #define JT_INNER 0x0001 /* Any kind of inner or cross join */ #define JT_NATURAL 0x0002 /* True for a "natural" join */ -#define JT_LEFT 0x0014 /* Left outer join */ -#define JT_RIGHT 0x0018 /* Right outer join */ -#define JT_FULL 0x001a /* Combination of left and right outer join */ +#define JT_LEFT 0x0004 /* Left outer join */ +#define JT_RIGHT 0x0008 /* Right outer join */ #define JT_OUTER 0x0010 /* The "OUTER" keyword is present */ #define JT_ERROR 0x0020 /* unknown or unsupported join type */ |