mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
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:
parent
f6e85c0c5a
commit
f9847fd30b
1 changed files with 7 additions and 0 deletions
|
|
@ -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.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue