sqlite3: added assist++ pragrma to avoid Select struct of sqlite3 to hide SqlExp Select

git-svn-id: svn://ultimatepp.org/upp/trunk@1294 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2009-06-10 16:00:48 +00:00
parent f6e85c0c5a
commit f9847fd30b

View file

@ -445,7 +445,9 @@ typedef struct KeyInfo KeyInfo;
typedef struct Module Module;
typedef struct NameContext NameContext;
typedef struct Parse Parse;
//#-
typedef struct Select Select;
//#+
typedef struct SrcList SrcList;
typedef struct StrAccum StrAccum;
typedef struct Table Table;
@ -1415,6 +1417,9 @@ struct NameContext {
** for the result set. The KeyInfo for addrOpenTran[2] contains collating
** sequences for the ORDER BY clause.
*/
//$-
struct Select {
ExprList *pEList; /* The fields of the result */
u8 op; /* One of: TK_UNION TK_ALL TK_INTERSECT TK_EXCEPT */
@ -1438,6 +1443,8 @@ struct Select {
int addrOpenEphm[3]; /* OP_OpenEphem opcodes related to this select */
};
//$+
/*
** The results of a select can be distributed in several ways.
*/