sl@0
|
1 |
/*
|
sl@0
|
2 |
** 2008 August 18
|
sl@0
|
3 |
**
|
sl@0
|
4 |
** The author disclaims copyright to this source code. In place of
|
sl@0
|
5 |
** a legal notice, here is a blessing:
|
sl@0
|
6 |
**
|
sl@0
|
7 |
** May you do good and not evil.
|
sl@0
|
8 |
** May you find forgiveness for yourself and forgive others.
|
sl@0
|
9 |
** May you share freely, never taking more than you give.
|
sl@0
|
10 |
**
|
sl@0
|
11 |
*************************************************************************
|
sl@0
|
12 |
**
|
sl@0
|
13 |
** This file contains routines used for walking the parser tree and
|
sl@0
|
14 |
** resolve all identifiers by associating them with a particular
|
sl@0
|
15 |
** table and column.
|
sl@0
|
16 |
**
|
sl@0
|
17 |
** $Id: resolve.c,v 1.9 2008/10/11 16:47:36 drh Exp $
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
#include "sqliteInt.h"
|
sl@0
|
20 |
#include <stdlib.h>
|
sl@0
|
21 |
#include <string.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
/*
|
sl@0
|
24 |
** Turn the pExpr expression into an alias for the iCol-th column of the
|
sl@0
|
25 |
** result set in pEList.
|
sl@0
|
26 |
**
|
sl@0
|
27 |
** If the result set column is a simple column reference, then this routine
|
sl@0
|
28 |
** makes an exact copy. But for any other kind of expression, this
|
sl@0
|
29 |
** routine make a copy of the result set column as the argument to the
|
sl@0
|
30 |
** TK_AS operator. The TK_AS operator causes the expression to be
|
sl@0
|
31 |
** evaluated just once and then reused for each alias.
|
sl@0
|
32 |
**
|
sl@0
|
33 |
** The reason for suppressing the TK_AS term when the expression is a simple
|
sl@0
|
34 |
** column reference is so that the column reference will be recognized as
|
sl@0
|
35 |
** usable by indices within the WHERE clause processing logic.
|
sl@0
|
36 |
**
|
sl@0
|
37 |
** Hack: The TK_AS operator is inhibited if zType[0]=='G'. This means
|
sl@0
|
38 |
** that in a GROUP BY clause, the expression is evaluated twice. Hence:
|
sl@0
|
39 |
**
|
sl@0
|
40 |
** SELECT random()%5 AS x, count(*) FROM tab GROUP BY x
|
sl@0
|
41 |
**
|
sl@0
|
42 |
** Is equivalent to:
|
sl@0
|
43 |
**
|
sl@0
|
44 |
** SELECT random()%5 AS x, count(*) FROM tab GROUP BY random()%5
|
sl@0
|
45 |
**
|
sl@0
|
46 |
** The result of random()%5 in the GROUP BY clause is probably different
|
sl@0
|
47 |
** from the result in the result-set. We might fix this someday. Or
|
sl@0
|
48 |
** then again, we might not...
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
static void resolveAlias(
|
sl@0
|
51 |
Parse *pParse, /* Parsing context */
|
sl@0
|
52 |
ExprList *pEList, /* A result set */
|
sl@0
|
53 |
int iCol, /* A column in the result set. 0..pEList->nExpr-1 */
|
sl@0
|
54 |
Expr *pExpr, /* Transform this into an alias to the result set */
|
sl@0
|
55 |
const char *zType /* "GROUP" or "ORDER" or "" */
|
sl@0
|
56 |
){
|
sl@0
|
57 |
Expr *pOrig; /* The iCol-th column of the result set */
|
sl@0
|
58 |
Expr *pDup; /* Copy of pOrig */
|
sl@0
|
59 |
sqlite3 *db; /* The database connection */
|
sl@0
|
60 |
|
sl@0
|
61 |
assert( iCol>=0 && iCol<pEList->nExpr );
|
sl@0
|
62 |
pOrig = pEList->a[iCol].pExpr;
|
sl@0
|
63 |
assert( pOrig!=0 );
|
sl@0
|
64 |
assert( pOrig->flags & EP_Resolved );
|
sl@0
|
65 |
db = pParse->db;
|
sl@0
|
66 |
pDup = sqlite3ExprDup(db, pOrig);
|
sl@0
|
67 |
if( pDup==0 ) return;
|
sl@0
|
68 |
if( pDup->op!=TK_COLUMN && zType[0]!='G' ){
|
sl@0
|
69 |
pDup = sqlite3PExpr(pParse, TK_AS, pDup, 0, 0);
|
sl@0
|
70 |
if( pDup==0 ) return;
|
sl@0
|
71 |
if( pEList->a[iCol].iAlias==0 ){
|
sl@0
|
72 |
pEList->a[iCol].iAlias = ++pParse->nAlias;
|
sl@0
|
73 |
}
|
sl@0
|
74 |
pDup->iTable = pEList->a[iCol].iAlias;
|
sl@0
|
75 |
}
|
sl@0
|
76 |
if( pExpr->flags & EP_ExpCollate ){
|
sl@0
|
77 |
pDup->pColl = pExpr->pColl;
|
sl@0
|
78 |
pDup->flags |= EP_ExpCollate;
|
sl@0
|
79 |
}
|
sl@0
|
80 |
sqlite3ExprClear(db, pExpr);
|
sl@0
|
81 |
memcpy(pExpr, pDup, sizeof(*pExpr));
|
sl@0
|
82 |
sqlite3DbFree(db, pDup);
|
sl@0
|
83 |
}
|
sl@0
|
84 |
|
sl@0
|
85 |
/*
|
sl@0
|
86 |
** Given the name of a column of the form X.Y.Z or Y.Z or just Z, look up
|
sl@0
|
87 |
** that name in the set of source tables in pSrcList and make the pExpr
|
sl@0
|
88 |
** expression node refer back to that source column. The following changes
|
sl@0
|
89 |
** are made to pExpr:
|
sl@0
|
90 |
**
|
sl@0
|
91 |
** pExpr->iDb Set the index in db->aDb[] of the database X
|
sl@0
|
92 |
** (even if X is implied).
|
sl@0
|
93 |
** pExpr->iTable Set to the cursor number for the table obtained
|
sl@0
|
94 |
** from pSrcList.
|
sl@0
|
95 |
** pExpr->pTab Points to the Table structure of X.Y (even if
|
sl@0
|
96 |
** X and/or Y are implied.)
|
sl@0
|
97 |
** pExpr->iColumn Set to the column number within the table.
|
sl@0
|
98 |
** pExpr->op Set to TK_COLUMN.
|
sl@0
|
99 |
** pExpr->pLeft Any expression this points to is deleted
|
sl@0
|
100 |
** pExpr->pRight Any expression this points to is deleted.
|
sl@0
|
101 |
**
|
sl@0
|
102 |
** The pDbToken is the name of the database (the "X"). This value may be
|
sl@0
|
103 |
** NULL meaning that name is of the form Y.Z or Z. Any available database
|
sl@0
|
104 |
** can be used. The pTableToken is the name of the table (the "Y"). This
|
sl@0
|
105 |
** value can be NULL if pDbToken is also NULL. If pTableToken is NULL it
|
sl@0
|
106 |
** means that the form of the name is Z and that columns from any table
|
sl@0
|
107 |
** can be used.
|
sl@0
|
108 |
**
|
sl@0
|
109 |
** If the name cannot be resolved unambiguously, leave an error message
|
sl@0
|
110 |
** in pParse and return non-zero. Return zero on success.
|
sl@0
|
111 |
*/
|
sl@0
|
112 |
static int lookupName(
|
sl@0
|
113 |
Parse *pParse, /* The parsing context */
|
sl@0
|
114 |
Token *pDbToken, /* Name of the database containing table, or NULL */
|
sl@0
|
115 |
Token *pTableToken, /* Name of table containing column, or NULL */
|
sl@0
|
116 |
Token *pColumnToken, /* Name of the column. */
|
sl@0
|
117 |
NameContext *pNC, /* The name context used to resolve the name */
|
sl@0
|
118 |
Expr *pExpr /* Make this EXPR node point to the selected column */
|
sl@0
|
119 |
){
|
sl@0
|
120 |
char *zDb = 0; /* Name of the database. The "X" in X.Y.Z */
|
sl@0
|
121 |
char *zTab = 0; /* Name of the table. The "Y" in X.Y.Z or Y.Z */
|
sl@0
|
122 |
char *zCol = 0; /* Name of the column. The "Z" */
|
sl@0
|
123 |
int i, j; /* Loop counters */
|
sl@0
|
124 |
int cnt = 0; /* Number of matching column names */
|
sl@0
|
125 |
int cntTab = 0; /* Number of matching table names */
|
sl@0
|
126 |
sqlite3 *db = pParse->db; /* The database connection */
|
sl@0
|
127 |
struct SrcList_item *pItem; /* Use for looping over pSrcList items */
|
sl@0
|
128 |
struct SrcList_item *pMatch = 0; /* The matching pSrcList item */
|
sl@0
|
129 |
NameContext *pTopNC = pNC; /* First namecontext in the list */
|
sl@0
|
130 |
Schema *pSchema = 0; /* Schema of the expression */
|
sl@0
|
131 |
|
sl@0
|
132 |
assert( pColumnToken && pColumnToken->z ); /* The Z in X.Y.Z cannot be NULL */
|
sl@0
|
133 |
|
sl@0
|
134 |
/* Dequote and zero-terminate the names */
|
sl@0
|
135 |
zDb = sqlite3NameFromToken(db, pDbToken);
|
sl@0
|
136 |
zTab = sqlite3NameFromToken(db, pTableToken);
|
sl@0
|
137 |
zCol = sqlite3NameFromToken(db, pColumnToken);
|
sl@0
|
138 |
if( db->mallocFailed ){
|
sl@0
|
139 |
goto lookupname_end;
|
sl@0
|
140 |
}
|
sl@0
|
141 |
|
sl@0
|
142 |
/* Initialize the node to no-match */
|
sl@0
|
143 |
pExpr->iTable = -1;
|
sl@0
|
144 |
pExpr->pTab = 0;
|
sl@0
|
145 |
|
sl@0
|
146 |
/* Start at the inner-most context and move outward until a match is found */
|
sl@0
|
147 |
while( pNC && cnt==0 ){
|
sl@0
|
148 |
ExprList *pEList;
|
sl@0
|
149 |
SrcList *pSrcList = pNC->pSrcList;
|
sl@0
|
150 |
|
sl@0
|
151 |
if( pSrcList ){
|
sl@0
|
152 |
for(i=0, pItem=pSrcList->a; i<pSrcList->nSrc; i++, pItem++){
|
sl@0
|
153 |
Table *pTab;
|
sl@0
|
154 |
int iDb;
|
sl@0
|
155 |
Column *pCol;
|
sl@0
|
156 |
|
sl@0
|
157 |
pTab = pItem->pTab;
|
sl@0
|
158 |
assert( pTab!=0 && pTab->zName!=0 );
|
sl@0
|
159 |
iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
|
sl@0
|
160 |
assert( pTab->nCol>0 );
|
sl@0
|
161 |
if( zTab ){
|
sl@0
|
162 |
if( pItem->zAlias ){
|
sl@0
|
163 |
char *zTabName = pItem->zAlias;
|
sl@0
|
164 |
if( sqlite3StrICmp(zTabName, zTab)!=0 ) continue;
|
sl@0
|
165 |
}else{
|
sl@0
|
166 |
char *zTabName = pTab->zName;
|
sl@0
|
167 |
if( zTabName==0 || sqlite3StrICmp(zTabName, zTab)!=0 ) continue;
|
sl@0
|
168 |
if( zDb!=0 && sqlite3StrICmp(db->aDb[iDb].zName, zDb)!=0 ){
|
sl@0
|
169 |
continue;
|
sl@0
|
170 |
}
|
sl@0
|
171 |
}
|
sl@0
|
172 |
}
|
sl@0
|
173 |
if( 0==(cntTab++) ){
|
sl@0
|
174 |
pExpr->iTable = pItem->iCursor;
|
sl@0
|
175 |
pExpr->pTab = pTab;
|
sl@0
|
176 |
pSchema = pTab->pSchema;
|
sl@0
|
177 |
pMatch = pItem;
|
sl@0
|
178 |
}
|
sl@0
|
179 |
for(j=0, pCol=pTab->aCol; j<pTab->nCol; j++, pCol++){
|
sl@0
|
180 |
if( sqlite3StrICmp(pCol->zName, zCol)==0 ){
|
sl@0
|
181 |
IdList *pUsing;
|
sl@0
|
182 |
cnt++;
|
sl@0
|
183 |
pExpr->iTable = pItem->iCursor;
|
sl@0
|
184 |
pExpr->pTab = pTab;
|
sl@0
|
185 |
pMatch = pItem;
|
sl@0
|
186 |
pSchema = pTab->pSchema;
|
sl@0
|
187 |
/* Substitute the rowid (column -1) for the INTEGER PRIMARY KEY */
|
sl@0
|
188 |
pExpr->iColumn = j==pTab->iPKey ? -1 : j;
|
sl@0
|
189 |
if( i<pSrcList->nSrc-1 ){
|
sl@0
|
190 |
if( pItem[1].jointype & JT_NATURAL ){
|
sl@0
|
191 |
/* If this match occurred in the left table of a natural join,
|
sl@0
|
192 |
** then skip the right table to avoid a duplicate match */
|
sl@0
|
193 |
pItem++;
|
sl@0
|
194 |
i++;
|
sl@0
|
195 |
}else if( (pUsing = pItem[1].pUsing)!=0 ){
|
sl@0
|
196 |
/* If this match occurs on a column that is in the USING clause
|
sl@0
|
197 |
** of a join, skip the search of the right table of the join
|
sl@0
|
198 |
** to avoid a duplicate match there. */
|
sl@0
|
199 |
int k;
|
sl@0
|
200 |
for(k=0; k<pUsing->nId; k++){
|
sl@0
|
201 |
if( sqlite3StrICmp(pUsing->a[k].zName, zCol)==0 ){
|
sl@0
|
202 |
pItem++;
|
sl@0
|
203 |
i++;
|
sl@0
|
204 |
break;
|
sl@0
|
205 |
}
|
sl@0
|
206 |
}
|
sl@0
|
207 |
}
|
sl@0
|
208 |
}
|
sl@0
|
209 |
break;
|
sl@0
|
210 |
}
|
sl@0
|
211 |
}
|
sl@0
|
212 |
}
|
sl@0
|
213 |
}
|
sl@0
|
214 |
|
sl@0
|
215 |
#ifndef SQLITE_OMIT_TRIGGER
|
sl@0
|
216 |
/* If we have not already resolved the name, then maybe
|
sl@0
|
217 |
** it is a new.* or old.* trigger argument reference
|
sl@0
|
218 |
*/
|
sl@0
|
219 |
if( zDb==0 && zTab!=0 && cnt==0 && pParse->trigStack!=0 ){
|
sl@0
|
220 |
TriggerStack *pTriggerStack = pParse->trigStack;
|
sl@0
|
221 |
Table *pTab = 0;
|
sl@0
|
222 |
u32 *piColMask;
|
sl@0
|
223 |
if( pTriggerStack->newIdx != -1 && sqlite3StrICmp("new", zTab) == 0 ){
|
sl@0
|
224 |
pExpr->iTable = pTriggerStack->newIdx;
|
sl@0
|
225 |
assert( pTriggerStack->pTab );
|
sl@0
|
226 |
pTab = pTriggerStack->pTab;
|
sl@0
|
227 |
piColMask = &(pTriggerStack->newColMask);
|
sl@0
|
228 |
}else if( pTriggerStack->oldIdx != -1 && sqlite3StrICmp("old", zTab)==0 ){
|
sl@0
|
229 |
pExpr->iTable = pTriggerStack->oldIdx;
|
sl@0
|
230 |
assert( pTriggerStack->pTab );
|
sl@0
|
231 |
pTab = pTriggerStack->pTab;
|
sl@0
|
232 |
piColMask = &(pTriggerStack->oldColMask);
|
sl@0
|
233 |
}
|
sl@0
|
234 |
|
sl@0
|
235 |
if( pTab ){
|
sl@0
|
236 |
int iCol;
|
sl@0
|
237 |
Column *pCol = pTab->aCol;
|
sl@0
|
238 |
|
sl@0
|
239 |
pSchema = pTab->pSchema;
|
sl@0
|
240 |
cntTab++;
|
sl@0
|
241 |
for(iCol=0; iCol < pTab->nCol; iCol++, pCol++) {
|
sl@0
|
242 |
if( sqlite3StrICmp(pCol->zName, zCol)==0 ){
|
sl@0
|
243 |
cnt++;
|
sl@0
|
244 |
pExpr->iColumn = iCol==pTab->iPKey ? -1 : iCol;
|
sl@0
|
245 |
pExpr->pTab = pTab;
|
sl@0
|
246 |
if( iCol>=0 ){
|
sl@0
|
247 |
testcase( iCol==31 );
|
sl@0
|
248 |
testcase( iCol==32 );
|
sl@0
|
249 |
*piColMask |= ((u32)1<<iCol) | (iCol>=32?0xffffffff:0);
|
sl@0
|
250 |
}
|
sl@0
|
251 |
break;
|
sl@0
|
252 |
}
|
sl@0
|
253 |
}
|
sl@0
|
254 |
}
|
sl@0
|
255 |
}
|
sl@0
|
256 |
#endif /* !defined(SQLITE_OMIT_TRIGGER) */
|
sl@0
|
257 |
|
sl@0
|
258 |
/*
|
sl@0
|
259 |
** Perhaps the name is a reference to the ROWID
|
sl@0
|
260 |
*/
|
sl@0
|
261 |
if( cnt==0 && cntTab==1 && sqlite3IsRowid(zCol) ){
|
sl@0
|
262 |
cnt = 1;
|
sl@0
|
263 |
pExpr->iColumn = -1;
|
sl@0
|
264 |
pExpr->affinity = SQLITE_AFF_INTEGER;
|
sl@0
|
265 |
}
|
sl@0
|
266 |
|
sl@0
|
267 |
/*
|
sl@0
|
268 |
** If the input is of the form Z (not Y.Z or X.Y.Z) then the name Z
|
sl@0
|
269 |
** might refer to an result-set alias. This happens, for example, when
|
sl@0
|
270 |
** we are resolving names in the WHERE clause of the following command:
|
sl@0
|
271 |
**
|
sl@0
|
272 |
** SELECT a+b AS x FROM table WHERE x<10;
|
sl@0
|
273 |
**
|
sl@0
|
274 |
** In cases like this, replace pExpr with a copy of the expression that
|
sl@0
|
275 |
** forms the result set entry ("a+b" in the example) and return immediately.
|
sl@0
|
276 |
** Note that the expression in the result set should have already been
|
sl@0
|
277 |
** resolved by the time the WHERE clause is resolved.
|
sl@0
|
278 |
*/
|
sl@0
|
279 |
if( cnt==0 && (pEList = pNC->pEList)!=0 && zTab==0 ){
|
sl@0
|
280 |
for(j=0; j<pEList->nExpr; j++){
|
sl@0
|
281 |
char *zAs = pEList->a[j].zName;
|
sl@0
|
282 |
if( zAs!=0 && sqlite3StrICmp(zAs, zCol)==0 ){
|
sl@0
|
283 |
Expr *pOrig;
|
sl@0
|
284 |
assert( pExpr->pLeft==0 && pExpr->pRight==0 );
|
sl@0
|
285 |
assert( pExpr->pList==0 );
|
sl@0
|
286 |
assert( pExpr->pSelect==0 );
|
sl@0
|
287 |
pOrig = pEList->a[j].pExpr;
|
sl@0
|
288 |
if( !pNC->allowAgg && ExprHasProperty(pOrig, EP_Agg) ){
|
sl@0
|
289 |
sqlite3ErrorMsg(pParse, "misuse of aliased aggregate %s", zAs);
|
sl@0
|
290 |
sqlite3DbFree(db, zCol);
|
sl@0
|
291 |
return 2;
|
sl@0
|
292 |
}
|
sl@0
|
293 |
resolveAlias(pParse, pEList, j, pExpr, "");
|
sl@0
|
294 |
cnt = 1;
|
sl@0
|
295 |
pMatch = 0;
|
sl@0
|
296 |
assert( zTab==0 && zDb==0 );
|
sl@0
|
297 |
goto lookupname_end_2;
|
sl@0
|
298 |
}
|
sl@0
|
299 |
}
|
sl@0
|
300 |
}
|
sl@0
|
301 |
|
sl@0
|
302 |
/* Advance to the next name context. The loop will exit when either
|
sl@0
|
303 |
** we have a match (cnt>0) or when we run out of name contexts.
|
sl@0
|
304 |
*/
|
sl@0
|
305 |
if( cnt==0 ){
|
sl@0
|
306 |
pNC = pNC->pNext;
|
sl@0
|
307 |
}
|
sl@0
|
308 |
}
|
sl@0
|
309 |
|
sl@0
|
310 |
/*
|
sl@0
|
311 |
** If X and Y are NULL (in other words if only the column name Z is
|
sl@0
|
312 |
** supplied) and the value of Z is enclosed in double-quotes, then
|
sl@0
|
313 |
** Z is a string literal if it doesn't match any column names. In that
|
sl@0
|
314 |
** case, we need to return right away and not make any changes to
|
sl@0
|
315 |
** pExpr.
|
sl@0
|
316 |
**
|
sl@0
|
317 |
** Because no reference was made to outer contexts, the pNC->nRef
|
sl@0
|
318 |
** fields are not changed in any context.
|
sl@0
|
319 |
*/
|
sl@0
|
320 |
if( cnt==0 && zTab==0 && pColumnToken->z[0]=='"' ){
|
sl@0
|
321 |
sqlite3DbFree(db, zCol);
|
sl@0
|
322 |
pExpr->op = TK_STRING;
|
sl@0
|
323 |
return 0;
|
sl@0
|
324 |
}
|
sl@0
|
325 |
|
sl@0
|
326 |
/*
|
sl@0
|
327 |
** cnt==0 means there was not match. cnt>1 means there were two or
|
sl@0
|
328 |
** more matches. Either way, we have an error.
|
sl@0
|
329 |
*/
|
sl@0
|
330 |
if( cnt!=1 ){
|
sl@0
|
331 |
const char *zErr;
|
sl@0
|
332 |
zErr = cnt==0 ? "no such column" : "ambiguous column name";
|
sl@0
|
333 |
if( zDb ){
|
sl@0
|
334 |
sqlite3ErrorMsg(pParse, "%s: %s.%s.%s", zErr, zDb, zTab, zCol);
|
sl@0
|
335 |
}else if( zTab ){
|
sl@0
|
336 |
sqlite3ErrorMsg(pParse, "%s: %s.%s", zErr, zTab, zCol);
|
sl@0
|
337 |
}else{
|
sl@0
|
338 |
sqlite3ErrorMsg(pParse, "%s: %s", zErr, zCol);
|
sl@0
|
339 |
}
|
sl@0
|
340 |
pTopNC->nErr++;
|
sl@0
|
341 |
}
|
sl@0
|
342 |
|
sl@0
|
343 |
/* If a column from a table in pSrcList is referenced, then record
|
sl@0
|
344 |
** this fact in the pSrcList.a[].colUsed bitmask. Column 0 causes
|
sl@0
|
345 |
** bit 0 to be set. Column 1 sets bit 1. And so forth. If the
|
sl@0
|
346 |
** column number is greater than the number of bits in the bitmask
|
sl@0
|
347 |
** then set the high-order bit of the bitmask.
|
sl@0
|
348 |
*/
|
sl@0
|
349 |
if( pExpr->iColumn>=0 && pMatch!=0 ){
|
sl@0
|
350 |
int n = pExpr->iColumn;
|
sl@0
|
351 |
testcase( n==sizeof(Bitmask)*8-1 );
|
sl@0
|
352 |
if( n>=sizeof(Bitmask)*8 ){
|
sl@0
|
353 |
n = sizeof(Bitmask)*8-1;
|
sl@0
|
354 |
}
|
sl@0
|
355 |
assert( pMatch->iCursor==pExpr->iTable );
|
sl@0
|
356 |
pMatch->colUsed |= ((Bitmask)1)<<n;
|
sl@0
|
357 |
}
|
sl@0
|
358 |
|
sl@0
|
359 |
lookupname_end:
|
sl@0
|
360 |
/* Clean up and return
|
sl@0
|
361 |
*/
|
sl@0
|
362 |
sqlite3DbFree(db, zDb);
|
sl@0
|
363 |
sqlite3DbFree(db, zTab);
|
sl@0
|
364 |
sqlite3ExprDelete(db, pExpr->pLeft);
|
sl@0
|
365 |
pExpr->pLeft = 0;
|
sl@0
|
366 |
sqlite3ExprDelete(db, pExpr->pRight);
|
sl@0
|
367 |
pExpr->pRight = 0;
|
sl@0
|
368 |
pExpr->op = TK_COLUMN;
|
sl@0
|
369 |
lookupname_end_2:
|
sl@0
|
370 |
sqlite3DbFree(db, zCol);
|
sl@0
|
371 |
if( cnt==1 ){
|
sl@0
|
372 |
assert( pNC!=0 );
|
sl@0
|
373 |
sqlite3AuthRead(pParse, pExpr, pSchema, pNC->pSrcList);
|
sl@0
|
374 |
/* Increment the nRef value on all name contexts from TopNC up to
|
sl@0
|
375 |
** the point where the name matched. */
|
sl@0
|
376 |
for(;;){
|
sl@0
|
377 |
assert( pTopNC!=0 );
|
sl@0
|
378 |
pTopNC->nRef++;
|
sl@0
|
379 |
if( pTopNC==pNC ) break;
|
sl@0
|
380 |
pTopNC = pTopNC->pNext;
|
sl@0
|
381 |
}
|
sl@0
|
382 |
return 0;
|
sl@0
|
383 |
} else {
|
sl@0
|
384 |
return 1;
|
sl@0
|
385 |
}
|
sl@0
|
386 |
}
|
sl@0
|
387 |
|
sl@0
|
388 |
/*
|
sl@0
|
389 |
** This routine is callback for sqlite3WalkExpr().
|
sl@0
|
390 |
**
|
sl@0
|
391 |
** Resolve symbolic names into TK_COLUMN operators for the current
|
sl@0
|
392 |
** node in the expression tree. Return 0 to continue the search down
|
sl@0
|
393 |
** the tree or 2 to abort the tree walk.
|
sl@0
|
394 |
**
|
sl@0
|
395 |
** This routine also does error checking and name resolution for
|
sl@0
|
396 |
** function names. The operator for aggregate functions is changed
|
sl@0
|
397 |
** to TK_AGG_FUNCTION.
|
sl@0
|
398 |
*/
|
sl@0
|
399 |
static int resolveExprStep(Walker *pWalker, Expr *pExpr){
|
sl@0
|
400 |
NameContext *pNC;
|
sl@0
|
401 |
Parse *pParse;
|
sl@0
|
402 |
|
sl@0
|
403 |
pNC = pWalker->u.pNC;
|
sl@0
|
404 |
assert( pNC!=0 );
|
sl@0
|
405 |
pParse = pNC->pParse;
|
sl@0
|
406 |
assert( pParse==pWalker->pParse );
|
sl@0
|
407 |
|
sl@0
|
408 |
if( ExprHasAnyProperty(pExpr, EP_Resolved) ) return WRC_Prune;
|
sl@0
|
409 |
ExprSetProperty(pExpr, EP_Resolved);
|
sl@0
|
410 |
#ifndef NDEBUG
|
sl@0
|
411 |
if( pNC->pSrcList && pNC->pSrcList->nAlloc>0 ){
|
sl@0
|
412 |
SrcList *pSrcList = pNC->pSrcList;
|
sl@0
|
413 |
int i;
|
sl@0
|
414 |
for(i=0; i<pNC->pSrcList->nSrc; i++){
|
sl@0
|
415 |
assert( pSrcList->a[i].iCursor>=0 && pSrcList->a[i].iCursor<pParse->nTab);
|
sl@0
|
416 |
}
|
sl@0
|
417 |
}
|
sl@0
|
418 |
#endif
|
sl@0
|
419 |
switch( pExpr->op ){
|
sl@0
|
420 |
|
sl@0
|
421 |
#if defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) && !defined(SQLITE_OMIT_SUBQUERY)
|
sl@0
|
422 |
/* The special operator TK_ROW means use the rowid for the first
|
sl@0
|
423 |
** column in the FROM clause. This is used by the LIMIT and ORDER BY
|
sl@0
|
424 |
** clause processing on UPDATE and DELETE statements.
|
sl@0
|
425 |
*/
|
sl@0
|
426 |
case TK_ROW: {
|
sl@0
|
427 |
SrcList *pSrcList = pNC->pSrcList;
|
sl@0
|
428 |
struct SrcList_item *pItem;
|
sl@0
|
429 |
assert( pSrcList && pSrcList->nSrc==1 );
|
sl@0
|
430 |
pItem = pSrcList->a;
|
sl@0
|
431 |
pExpr->op = TK_COLUMN;
|
sl@0
|
432 |
pExpr->pTab = pItem->pTab;
|
sl@0
|
433 |
pExpr->iTable = pItem->iCursor;
|
sl@0
|
434 |
pExpr->iColumn = -1;
|
sl@0
|
435 |
pExpr->affinity = SQLITE_AFF_INTEGER;
|
sl@0
|
436 |
break;
|
sl@0
|
437 |
}
|
sl@0
|
438 |
#endif /* defined(SQLITE_ENABLE_UPDATE_DELETE_LIMIT) && !defined(SQLITE_OMIT_SUBQUERY) */
|
sl@0
|
439 |
|
sl@0
|
440 |
/* A lone identifier is the name of a column.
|
sl@0
|
441 |
*/
|
sl@0
|
442 |
case TK_ID: {
|
sl@0
|
443 |
lookupName(pParse, 0, 0, &pExpr->token, pNC, pExpr);
|
sl@0
|
444 |
return WRC_Prune;
|
sl@0
|
445 |
}
|
sl@0
|
446 |
|
sl@0
|
447 |
/* A table name and column name: ID.ID
|
sl@0
|
448 |
** Or a database, table and column: ID.ID.ID
|
sl@0
|
449 |
*/
|
sl@0
|
450 |
case TK_DOT: {
|
sl@0
|
451 |
Token *pColumn;
|
sl@0
|
452 |
Token *pTable;
|
sl@0
|
453 |
Token *pDb;
|
sl@0
|
454 |
Expr *pRight;
|
sl@0
|
455 |
|
sl@0
|
456 |
/* if( pSrcList==0 ) break; */
|
sl@0
|
457 |
pRight = pExpr->pRight;
|
sl@0
|
458 |
if( pRight->op==TK_ID ){
|
sl@0
|
459 |
pDb = 0;
|
sl@0
|
460 |
pTable = &pExpr->pLeft->token;
|
sl@0
|
461 |
pColumn = &pRight->token;
|
sl@0
|
462 |
}else{
|
sl@0
|
463 |
assert( pRight->op==TK_DOT );
|
sl@0
|
464 |
pDb = &pExpr->pLeft->token;
|
sl@0
|
465 |
pTable = &pRight->pLeft->token;
|
sl@0
|
466 |
pColumn = &pRight->pRight->token;
|
sl@0
|
467 |
}
|
sl@0
|
468 |
lookupName(pParse, pDb, pTable, pColumn, pNC, pExpr);
|
sl@0
|
469 |
return WRC_Prune;
|
sl@0
|
470 |
}
|
sl@0
|
471 |
|
sl@0
|
472 |
/* Resolve function names
|
sl@0
|
473 |
*/
|
sl@0
|
474 |
case TK_CONST_FUNC:
|
sl@0
|
475 |
case TK_FUNCTION: {
|
sl@0
|
476 |
ExprList *pList = pExpr->pList; /* The argument list */
|
sl@0
|
477 |
int n = pList ? pList->nExpr : 0; /* Number of arguments */
|
sl@0
|
478 |
int no_such_func = 0; /* True if no such function exists */
|
sl@0
|
479 |
int wrong_num_args = 0; /* True if wrong number of arguments */
|
sl@0
|
480 |
int is_agg = 0; /* True if is an aggregate function */
|
sl@0
|
481 |
int auth; /* Authorization to use the function */
|
sl@0
|
482 |
int nId; /* Number of characters in function name */
|
sl@0
|
483 |
const char *zId; /* The function name. */
|
sl@0
|
484 |
FuncDef *pDef; /* Information about the function */
|
sl@0
|
485 |
int enc = ENC(pParse->db); /* The database encoding */
|
sl@0
|
486 |
|
sl@0
|
487 |
zId = (char*)pExpr->token.z;
|
sl@0
|
488 |
nId = pExpr->token.n;
|
sl@0
|
489 |
pDef = sqlite3FindFunction(pParse->db, zId, nId, n, enc, 0);
|
sl@0
|
490 |
if( pDef==0 ){
|
sl@0
|
491 |
pDef = sqlite3FindFunction(pParse->db, zId, nId, -1, enc, 0);
|
sl@0
|
492 |
if( pDef==0 ){
|
sl@0
|
493 |
no_such_func = 1;
|
sl@0
|
494 |
}else{
|
sl@0
|
495 |
wrong_num_args = 1;
|
sl@0
|
496 |
}
|
sl@0
|
497 |
}else{
|
sl@0
|
498 |
is_agg = pDef->xFunc==0;
|
sl@0
|
499 |
}
|
sl@0
|
500 |
#ifndef SQLITE_OMIT_AUTHORIZATION
|
sl@0
|
501 |
if( pDef ){
|
sl@0
|
502 |
auth = sqlite3AuthCheck(pParse, SQLITE_FUNCTION, 0, pDef->zName, 0);
|
sl@0
|
503 |
if( auth!=SQLITE_OK ){
|
sl@0
|
504 |
if( auth==SQLITE_DENY ){
|
sl@0
|
505 |
sqlite3ErrorMsg(pParse, "not authorized to use function: %s",
|
sl@0
|
506 |
pDef->zName);
|
sl@0
|
507 |
pNC->nErr++;
|
sl@0
|
508 |
}
|
sl@0
|
509 |
pExpr->op = TK_NULL;
|
sl@0
|
510 |
return WRC_Prune;
|
sl@0
|
511 |
}
|
sl@0
|
512 |
}
|
sl@0
|
513 |
#endif
|
sl@0
|
514 |
if( is_agg && !pNC->allowAgg ){
|
sl@0
|
515 |
sqlite3ErrorMsg(pParse, "misuse of aggregate function %.*s()", nId,zId);
|
sl@0
|
516 |
pNC->nErr++;
|
sl@0
|
517 |
is_agg = 0;
|
sl@0
|
518 |
}else if( no_such_func ){
|
sl@0
|
519 |
sqlite3ErrorMsg(pParse, "no such function: %.*s", nId, zId);
|
sl@0
|
520 |
pNC->nErr++;
|
sl@0
|
521 |
}else if( wrong_num_args ){
|
sl@0
|
522 |
sqlite3ErrorMsg(pParse,"wrong number of arguments to function %.*s()",
|
sl@0
|
523 |
nId, zId);
|
sl@0
|
524 |
pNC->nErr++;
|
sl@0
|
525 |
}
|
sl@0
|
526 |
if( is_agg ){
|
sl@0
|
527 |
pExpr->op = TK_AGG_FUNCTION;
|
sl@0
|
528 |
pNC->hasAgg = 1;
|
sl@0
|
529 |
}
|
sl@0
|
530 |
if( is_agg ) pNC->allowAgg = 0;
|
sl@0
|
531 |
sqlite3WalkExprList(pWalker, pList);
|
sl@0
|
532 |
if( is_agg ) pNC->allowAgg = 1;
|
sl@0
|
533 |
/* FIX ME: Compute pExpr->affinity based on the expected return
|
sl@0
|
534 |
** type of the function
|
sl@0
|
535 |
*/
|
sl@0
|
536 |
return WRC_Prune;
|
sl@0
|
537 |
}
|
sl@0
|
538 |
#ifndef SQLITE_OMIT_SUBQUERY
|
sl@0
|
539 |
case TK_SELECT:
|
sl@0
|
540 |
case TK_EXISTS:
|
sl@0
|
541 |
#endif
|
sl@0
|
542 |
case TK_IN: {
|
sl@0
|
543 |
if( pExpr->pSelect ){
|
sl@0
|
544 |
int nRef = pNC->nRef;
|
sl@0
|
545 |
#ifndef SQLITE_OMIT_CHECK
|
sl@0
|
546 |
if( pNC->isCheck ){
|
sl@0
|
547 |
sqlite3ErrorMsg(pParse,"subqueries prohibited in CHECK constraints");
|
sl@0
|
548 |
}
|
sl@0
|
549 |
#endif
|
sl@0
|
550 |
sqlite3WalkSelect(pWalker, pExpr->pSelect);
|
sl@0
|
551 |
assert( pNC->nRef>=nRef );
|
sl@0
|
552 |
if( nRef!=pNC->nRef ){
|
sl@0
|
553 |
ExprSetProperty(pExpr, EP_VarSelect);
|
sl@0
|
554 |
}
|
sl@0
|
555 |
}
|
sl@0
|
556 |
break;
|
sl@0
|
557 |
}
|
sl@0
|
558 |
#ifndef SQLITE_OMIT_CHECK
|
sl@0
|
559 |
case TK_VARIABLE: {
|
sl@0
|
560 |
if( pNC->isCheck ){
|
sl@0
|
561 |
sqlite3ErrorMsg(pParse,"parameters prohibited in CHECK constraints");
|
sl@0
|
562 |
}
|
sl@0
|
563 |
break;
|
sl@0
|
564 |
}
|
sl@0
|
565 |
#endif
|
sl@0
|
566 |
}
|
sl@0
|
567 |
return (pParse->nErr || pParse->db->mallocFailed) ? WRC_Abort : WRC_Continue;
|
sl@0
|
568 |
}
|
sl@0
|
569 |
|
sl@0
|
570 |
/*
|
sl@0
|
571 |
** pEList is a list of expressions which are really the result set of the
|
sl@0
|
572 |
** a SELECT statement. pE is a term in an ORDER BY or GROUP BY clause.
|
sl@0
|
573 |
** This routine checks to see if pE is a simple identifier which corresponds
|
sl@0
|
574 |
** to the AS-name of one of the terms of the expression list. If it is,
|
sl@0
|
575 |
** this routine return an integer between 1 and N where N is the number of
|
sl@0
|
576 |
** elements in pEList, corresponding to the matching entry. If there is
|
sl@0
|
577 |
** no match, or if pE is not a simple identifier, then this routine
|
sl@0
|
578 |
** return 0.
|
sl@0
|
579 |
**
|
sl@0
|
580 |
** pEList has been resolved. pE has not.
|
sl@0
|
581 |
*/
|
sl@0
|
582 |
static int resolveAsName(
|
sl@0
|
583 |
Parse *pParse, /* Parsing context for error messages */
|
sl@0
|
584 |
ExprList *pEList, /* List of expressions to scan */
|
sl@0
|
585 |
Expr *pE /* Expression we are trying to match */
|
sl@0
|
586 |
){
|
sl@0
|
587 |
int i; /* Loop counter */
|
sl@0
|
588 |
|
sl@0
|
589 |
if( pE->op==TK_ID || (pE->op==TK_STRING && pE->token.z[0]!='\'') ){
|
sl@0
|
590 |
sqlite3 *db = pParse->db;
|
sl@0
|
591 |
char *zCol = sqlite3NameFromToken(db, &pE->token);
|
sl@0
|
592 |
if( zCol==0 ){
|
sl@0
|
593 |
return -1;
|
sl@0
|
594 |
}
|
sl@0
|
595 |
for(i=0; i<pEList->nExpr; i++){
|
sl@0
|
596 |
char *zAs = pEList->a[i].zName;
|
sl@0
|
597 |
if( zAs!=0 && sqlite3StrICmp(zAs, zCol)==0 ){
|
sl@0
|
598 |
sqlite3DbFree(db, zCol);
|
sl@0
|
599 |
return i+1;
|
sl@0
|
600 |
}
|
sl@0
|
601 |
}
|
sl@0
|
602 |
sqlite3DbFree(db, zCol);
|
sl@0
|
603 |
}
|
sl@0
|
604 |
return 0;
|
sl@0
|
605 |
}
|
sl@0
|
606 |
|
sl@0
|
607 |
/*
|
sl@0
|
608 |
** pE is a pointer to an expression which is a single term in the
|
sl@0
|
609 |
** ORDER BY of a compound SELECT. The expression has not been
|
sl@0
|
610 |
** name resolved.
|
sl@0
|
611 |
**
|
sl@0
|
612 |
** At the point this routine is called, we already know that the
|
sl@0
|
613 |
** ORDER BY term is not an integer index into the result set. That
|
sl@0
|
614 |
** case is handled by the calling routine.
|
sl@0
|
615 |
**
|
sl@0
|
616 |
** Attempt to match pE against result set columns in the left-most
|
sl@0
|
617 |
** SELECT statement. Return the index i of the matching column,
|
sl@0
|
618 |
** as an indication to the caller that it should sort by the i-th column.
|
sl@0
|
619 |
** The left-most column is 1. In other words, the value returned is the
|
sl@0
|
620 |
** same integer value that would be used in the SQL statement to indicate
|
sl@0
|
621 |
** the column.
|
sl@0
|
622 |
**
|
sl@0
|
623 |
** If there is no match, return 0. Return -1 if an error occurs.
|
sl@0
|
624 |
*/
|
sl@0
|
625 |
static int resolveOrderByTermToExprList(
|
sl@0
|
626 |
Parse *pParse, /* Parsing context for error messages */
|
sl@0
|
627 |
Select *pSelect, /* The SELECT statement with the ORDER BY clause */
|
sl@0
|
628 |
Expr *pE /* The specific ORDER BY term */
|
sl@0
|
629 |
){
|
sl@0
|
630 |
int i; /* Loop counter */
|
sl@0
|
631 |
ExprList *pEList; /* The columns of the result set */
|
sl@0
|
632 |
NameContext nc; /* Name context for resolving pE */
|
sl@0
|
633 |
|
sl@0
|
634 |
assert( sqlite3ExprIsInteger(pE, &i)==0 );
|
sl@0
|
635 |
pEList = pSelect->pEList;
|
sl@0
|
636 |
|
sl@0
|
637 |
/* Resolve all names in the ORDER BY term expression
|
sl@0
|
638 |
*/
|
sl@0
|
639 |
memset(&nc, 0, sizeof(nc));
|
sl@0
|
640 |
nc.pParse = pParse;
|
sl@0
|
641 |
nc.pSrcList = pSelect->pSrc;
|
sl@0
|
642 |
nc.pEList = pEList;
|
sl@0
|
643 |
nc.allowAgg = 1;
|
sl@0
|
644 |
nc.nErr = 0;
|
sl@0
|
645 |
if( sqlite3ResolveExprNames(&nc, pE) ){
|
sl@0
|
646 |
sqlite3ErrorClear(pParse);
|
sl@0
|
647 |
return 0;
|
sl@0
|
648 |
}
|
sl@0
|
649 |
|
sl@0
|
650 |
/* Try to match the ORDER BY expression against an expression
|
sl@0
|
651 |
** in the result set. Return an 1-based index of the matching
|
sl@0
|
652 |
** result-set entry.
|
sl@0
|
653 |
*/
|
sl@0
|
654 |
for(i=0; i<pEList->nExpr; i++){
|
sl@0
|
655 |
if( sqlite3ExprCompare(pEList->a[i].pExpr, pE) ){
|
sl@0
|
656 |
return i+1;
|
sl@0
|
657 |
}
|
sl@0
|
658 |
}
|
sl@0
|
659 |
|
sl@0
|
660 |
/* If no match, return 0. */
|
sl@0
|
661 |
return 0;
|
sl@0
|
662 |
}
|
sl@0
|
663 |
|
sl@0
|
664 |
/*
|
sl@0
|
665 |
** Generate an ORDER BY or GROUP BY term out-of-range error.
|
sl@0
|
666 |
*/
|
sl@0
|
667 |
static void resolveOutOfRangeError(
|
sl@0
|
668 |
Parse *pParse, /* The error context into which to write the error */
|
sl@0
|
669 |
const char *zType, /* "ORDER" or "GROUP" */
|
sl@0
|
670 |
int i, /* The index (1-based) of the term out of range */
|
sl@0
|
671 |
int mx /* Largest permissible value of i */
|
sl@0
|
672 |
){
|
sl@0
|
673 |
sqlite3ErrorMsg(pParse,
|
sl@0
|
674 |
"%r %s BY term out of range - should be "
|
sl@0
|
675 |
"between 1 and %d", i, zType, mx);
|
sl@0
|
676 |
}
|
sl@0
|
677 |
|
sl@0
|
678 |
/*
|
sl@0
|
679 |
** Analyze the ORDER BY clause in a compound SELECT statement. Modify
|
sl@0
|
680 |
** each term of the ORDER BY clause is a constant integer between 1
|
sl@0
|
681 |
** and N where N is the number of columns in the compound SELECT.
|
sl@0
|
682 |
**
|
sl@0
|
683 |
** ORDER BY terms that are already an integer between 1 and N are
|
sl@0
|
684 |
** unmodified. ORDER BY terms that are integers outside the range of
|
sl@0
|
685 |
** 1 through N generate an error. ORDER BY terms that are expressions
|
sl@0
|
686 |
** are matched against result set expressions of compound SELECT
|
sl@0
|
687 |
** beginning with the left-most SELECT and working toward the right.
|
sl@0
|
688 |
** At the first match, the ORDER BY expression is transformed into
|
sl@0
|
689 |
** the integer column number.
|
sl@0
|
690 |
**
|
sl@0
|
691 |
** Return the number of errors seen.
|
sl@0
|
692 |
*/
|
sl@0
|
693 |
static int resolveCompoundOrderBy(
|
sl@0
|
694 |
Parse *pParse, /* Parsing context. Leave error messages here */
|
sl@0
|
695 |
Select *pSelect /* The SELECT statement containing the ORDER BY */
|
sl@0
|
696 |
){
|
sl@0
|
697 |
int i;
|
sl@0
|
698 |
ExprList *pOrderBy;
|
sl@0
|
699 |
ExprList *pEList;
|
sl@0
|
700 |
sqlite3 *db;
|
sl@0
|
701 |
int moreToDo = 1;
|
sl@0
|
702 |
|
sl@0
|
703 |
pOrderBy = pSelect->pOrderBy;
|
sl@0
|
704 |
if( pOrderBy==0 ) return 0;
|
sl@0
|
705 |
db = pParse->db;
|
sl@0
|
706 |
#if SQLITE_MAX_COLUMN
|
sl@0
|
707 |
if( pOrderBy->nExpr>db->aLimit[SQLITE_LIMIT_COLUMN] ){
|
sl@0
|
708 |
sqlite3ErrorMsg(pParse, "too many terms in ORDER BY clause");
|
sl@0
|
709 |
return 1;
|
sl@0
|
710 |
}
|
sl@0
|
711 |
#endif
|
sl@0
|
712 |
for(i=0; i<pOrderBy->nExpr; i++){
|
sl@0
|
713 |
pOrderBy->a[i].done = 0;
|
sl@0
|
714 |
}
|
sl@0
|
715 |
pSelect->pNext = 0;
|
sl@0
|
716 |
while( pSelect->pPrior ){
|
sl@0
|
717 |
pSelect->pPrior->pNext = pSelect;
|
sl@0
|
718 |
pSelect = pSelect->pPrior;
|
sl@0
|
719 |
}
|
sl@0
|
720 |
while( pSelect && moreToDo ){
|
sl@0
|
721 |
struct ExprList_item *pItem;
|
sl@0
|
722 |
moreToDo = 0;
|
sl@0
|
723 |
pEList = pSelect->pEList;
|
sl@0
|
724 |
assert( pEList!=0 );
|
sl@0
|
725 |
for(i=0, pItem=pOrderBy->a; i<pOrderBy->nExpr; i++, pItem++){
|
sl@0
|
726 |
int iCol = -1;
|
sl@0
|
727 |
Expr *pE, *pDup;
|
sl@0
|
728 |
if( pItem->done ) continue;
|
sl@0
|
729 |
pE = pItem->pExpr;
|
sl@0
|
730 |
if( sqlite3ExprIsInteger(pE, &iCol) ){
|
sl@0
|
731 |
if( iCol<0 || iCol>pEList->nExpr ){
|
sl@0
|
732 |
resolveOutOfRangeError(pParse, "ORDER", i+1, pEList->nExpr);
|
sl@0
|
733 |
return 1;
|
sl@0
|
734 |
}
|
sl@0
|
735 |
}else{
|
sl@0
|
736 |
iCol = resolveAsName(pParse, pEList, pE);
|
sl@0
|
737 |
if( iCol==0 ){
|
sl@0
|
738 |
pDup = sqlite3ExprDup(db, pE);
|
sl@0
|
739 |
if( !db->mallocFailed ){
|
sl@0
|
740 |
assert(pDup);
|
sl@0
|
741 |
iCol = resolveOrderByTermToExprList(pParse, pSelect, pDup);
|
sl@0
|
742 |
}
|
sl@0
|
743 |
sqlite3ExprDelete(db, pDup);
|
sl@0
|
744 |
}
|
sl@0
|
745 |
if( iCol<0 ){
|
sl@0
|
746 |
return 1;
|
sl@0
|
747 |
}
|
sl@0
|
748 |
}
|
sl@0
|
749 |
if( iCol>0 ){
|
sl@0
|
750 |
CollSeq *pColl = pE->pColl;
|
sl@0
|
751 |
int flags = pE->flags & EP_ExpCollate;
|
sl@0
|
752 |
sqlite3ExprDelete(db, pE);
|
sl@0
|
753 |
pItem->pExpr = pE = sqlite3Expr(db, TK_INTEGER, 0, 0, 0);
|
sl@0
|
754 |
if( pE==0 ) return 1;
|
sl@0
|
755 |
pE->pColl = pColl;
|
sl@0
|
756 |
pE->flags |= EP_IntValue | flags;
|
sl@0
|
757 |
pE->iTable = iCol;
|
sl@0
|
758 |
pItem->iCol = iCol;
|
sl@0
|
759 |
pItem->done = 1;
|
sl@0
|
760 |
}else{
|
sl@0
|
761 |
moreToDo = 1;
|
sl@0
|
762 |
}
|
sl@0
|
763 |
}
|
sl@0
|
764 |
pSelect = pSelect->pNext;
|
sl@0
|
765 |
}
|
sl@0
|
766 |
for(i=0; i<pOrderBy->nExpr; i++){
|
sl@0
|
767 |
if( pOrderBy->a[i].done==0 ){
|
sl@0
|
768 |
sqlite3ErrorMsg(pParse, "%r ORDER BY term does not match any "
|
sl@0
|
769 |
"column in the result set", i+1);
|
sl@0
|
770 |
return 1;
|
sl@0
|
771 |
}
|
sl@0
|
772 |
}
|
sl@0
|
773 |
return 0;
|
sl@0
|
774 |
}
|
sl@0
|
775 |
|
sl@0
|
776 |
/*
|
sl@0
|
777 |
** Check every term in the ORDER BY or GROUP BY clause pOrderBy of
|
sl@0
|
778 |
** the SELECT statement pSelect. If any term is reference to a
|
sl@0
|
779 |
** result set expression (as determined by the ExprList.a.iCol field)
|
sl@0
|
780 |
** then convert that term into a copy of the corresponding result set
|
sl@0
|
781 |
** column.
|
sl@0
|
782 |
**
|
sl@0
|
783 |
** If any errors are detected, add an error message to pParse and
|
sl@0
|
784 |
** return non-zero. Return zero if no errors are seen.
|
sl@0
|
785 |
*/
|
sl@0
|
786 |
int sqlite3ResolveOrderGroupBy(
|
sl@0
|
787 |
Parse *pParse, /* Parsing context. Leave error messages here */
|
sl@0
|
788 |
Select *pSelect, /* The SELECT statement containing the clause */
|
sl@0
|
789 |
ExprList *pOrderBy, /* The ORDER BY or GROUP BY clause to be processed */
|
sl@0
|
790 |
const char *zType /* "ORDER" or "GROUP" */
|
sl@0
|
791 |
){
|
sl@0
|
792 |
int i;
|
sl@0
|
793 |
sqlite3 *db = pParse->db;
|
sl@0
|
794 |
ExprList *pEList;
|
sl@0
|
795 |
struct ExprList_item *pItem;
|
sl@0
|
796 |
|
sl@0
|
797 |
if( pOrderBy==0 || pParse->db->mallocFailed ) return 0;
|
sl@0
|
798 |
#if SQLITE_MAX_COLUMN
|
sl@0
|
799 |
if( pOrderBy->nExpr>db->aLimit[SQLITE_LIMIT_COLUMN] ){
|
sl@0
|
800 |
sqlite3ErrorMsg(pParse, "too many terms in %s BY clause", zType);
|
sl@0
|
801 |
return 1;
|
sl@0
|
802 |
}
|
sl@0
|
803 |
#endif
|
sl@0
|
804 |
pEList = pSelect->pEList;
|
sl@0
|
805 |
assert( pEList!=0 ); /* sqlite3SelectNew() guarantees this */
|
sl@0
|
806 |
for(i=0, pItem=pOrderBy->a; i<pOrderBy->nExpr; i++, pItem++){
|
sl@0
|
807 |
if( pItem->iCol ){
|
sl@0
|
808 |
if( pItem->iCol>pEList->nExpr ){
|
sl@0
|
809 |
resolveOutOfRangeError(pParse, zType, i+1, pEList->nExpr);
|
sl@0
|
810 |
return 1;
|
sl@0
|
811 |
}
|
sl@0
|
812 |
resolveAlias(pParse, pEList, pItem->iCol-1, pItem->pExpr, zType);
|
sl@0
|
813 |
}
|
sl@0
|
814 |
}
|
sl@0
|
815 |
return 0;
|
sl@0
|
816 |
}
|
sl@0
|
817 |
|
sl@0
|
818 |
/*
|
sl@0
|
819 |
** pOrderBy is an ORDER BY or GROUP BY clause in SELECT statement pSelect.
|
sl@0
|
820 |
** The Name context of the SELECT statement is pNC. zType is either
|
sl@0
|
821 |
** "ORDER" or "GROUP" depending on which type of clause pOrderBy is.
|
sl@0
|
822 |
**
|
sl@0
|
823 |
** This routine resolves each term of the clause into an expression.
|
sl@0
|
824 |
** If the order-by term is an integer I between 1 and N (where N is the
|
sl@0
|
825 |
** number of columns in the result set of the SELECT) then the expression
|
sl@0
|
826 |
** in the resolution is a copy of the I-th result-set expression. If
|
sl@0
|
827 |
** the order-by term is an identify that corresponds to the AS-name of
|
sl@0
|
828 |
** a result-set expression, then the term resolves to a copy of the
|
sl@0
|
829 |
** result-set expression. Otherwise, the expression is resolved in
|
sl@0
|
830 |
** the usual way - using sqlite3ResolveExprNames().
|
sl@0
|
831 |
**
|
sl@0
|
832 |
** This routine returns the number of errors. If errors occur, then
|
sl@0
|
833 |
** an appropriate error message might be left in pParse. (OOM errors
|
sl@0
|
834 |
** excepted.)
|
sl@0
|
835 |
*/
|
sl@0
|
836 |
static int resolveOrderGroupBy(
|
sl@0
|
837 |
NameContext *pNC, /* The name context of the SELECT statement */
|
sl@0
|
838 |
Select *pSelect, /* The SELECT statement holding pOrderBy */
|
sl@0
|
839 |
ExprList *pOrderBy, /* An ORDER BY or GROUP BY clause to resolve */
|
sl@0
|
840 |
const char *zType /* Either "ORDER" or "GROUP", as appropriate */
|
sl@0
|
841 |
){
|
sl@0
|
842 |
int i; /* Loop counter */
|
sl@0
|
843 |
int iCol; /* Column number */
|
sl@0
|
844 |
struct ExprList_item *pItem; /* A term of the ORDER BY clause */
|
sl@0
|
845 |
Parse *pParse; /* Parsing context */
|
sl@0
|
846 |
int nResult; /* Number of terms in the result set */
|
sl@0
|
847 |
|
sl@0
|
848 |
if( pOrderBy==0 ) return 0;
|
sl@0
|
849 |
nResult = pSelect->pEList->nExpr;
|
sl@0
|
850 |
pParse = pNC->pParse;
|
sl@0
|
851 |
for(i=0, pItem=pOrderBy->a; i<pOrderBy->nExpr; i++, pItem++){
|
sl@0
|
852 |
Expr *pE = pItem->pExpr;
|
sl@0
|
853 |
iCol = resolveAsName(pParse, pSelect->pEList, pE);
|
sl@0
|
854 |
if( iCol<0 ){
|
sl@0
|
855 |
return 1; /* OOM error */
|
sl@0
|
856 |
}
|
sl@0
|
857 |
if( iCol>0 ){
|
sl@0
|
858 |
/* If an AS-name match is found, mark this ORDER BY column as being
|
sl@0
|
859 |
** a copy of the iCol-th result-set column. The subsequent call to
|
sl@0
|
860 |
** sqlite3ResolveOrderGroupBy() will convert the expression to a
|
sl@0
|
861 |
** copy of the iCol-th result-set expression. */
|
sl@0
|
862 |
pItem->iCol = iCol;
|
sl@0
|
863 |
continue;
|
sl@0
|
864 |
}
|
sl@0
|
865 |
if( sqlite3ExprIsInteger(pE, &iCol) ){
|
sl@0
|
866 |
/* The ORDER BY term is an integer constant. Again, set the column
|
sl@0
|
867 |
** number so that sqlite3ResolveOrderGroupBy() will convert the
|
sl@0
|
868 |
** order-by term to a copy of the result-set expression */
|
sl@0
|
869 |
if( iCol<1 ){
|
sl@0
|
870 |
resolveOutOfRangeError(pParse, zType, i+1, nResult);
|
sl@0
|
871 |
return 1;
|
sl@0
|
872 |
}
|
sl@0
|
873 |
pItem->iCol = iCol;
|
sl@0
|
874 |
continue;
|
sl@0
|
875 |
}
|
sl@0
|
876 |
|
sl@0
|
877 |
/* Otherwise, treat the ORDER BY term as an ordinary expression */
|
sl@0
|
878 |
pItem->iCol = 0;
|
sl@0
|
879 |
if( sqlite3ResolveExprNames(pNC, pE) ){
|
sl@0
|
880 |
return 1;
|
sl@0
|
881 |
}
|
sl@0
|
882 |
}
|
sl@0
|
883 |
return sqlite3ResolveOrderGroupBy(pParse, pSelect, pOrderBy, zType);
|
sl@0
|
884 |
}
|
sl@0
|
885 |
|
sl@0
|
886 |
/*
|
sl@0
|
887 |
** Resolve names in the SELECT statement p and all of its descendents.
|
sl@0
|
888 |
*/
|
sl@0
|
889 |
static int resolveSelectStep(Walker *pWalker, Select *p){
|
sl@0
|
890 |
NameContext *pOuterNC; /* Context that contains this SELECT */
|
sl@0
|
891 |
NameContext sNC; /* Name context of this SELECT */
|
sl@0
|
892 |
int isCompound; /* True if p is a compound select */
|
sl@0
|
893 |
int nCompound; /* Number of compound terms processed so far */
|
sl@0
|
894 |
Parse *pParse; /* Parsing context */
|
sl@0
|
895 |
ExprList *pEList; /* Result set expression list */
|
sl@0
|
896 |
int i; /* Loop counter */
|
sl@0
|
897 |
ExprList *pGroupBy; /* The GROUP BY clause */
|
sl@0
|
898 |
Select *pLeftmost; /* Left-most of SELECT of a compound */
|
sl@0
|
899 |
sqlite3 *db; /* Database connection */
|
sl@0
|
900 |
|
sl@0
|
901 |
|
sl@0
|
902 |
assert( p!=0 );
|
sl@0
|
903 |
if( p->selFlags & SF_Resolved ){
|
sl@0
|
904 |
return WRC_Prune;
|
sl@0
|
905 |
}
|
sl@0
|
906 |
pOuterNC = pWalker->u.pNC;
|
sl@0
|
907 |
pParse = pWalker->pParse;
|
sl@0
|
908 |
db = pParse->db;
|
sl@0
|
909 |
|
sl@0
|
910 |
/* Normally sqlite3SelectExpand() will be called first and will have
|
sl@0
|
911 |
** already expanded this SELECT. However, if this is a subquery within
|
sl@0
|
912 |
** an expression, sqlite3ResolveExprNames() will be called without a
|
sl@0
|
913 |
** prior call to sqlite3SelectExpand(). When that happens, let
|
sl@0
|
914 |
** sqlite3SelectPrep() do all of the processing for this SELECT.
|
sl@0
|
915 |
** sqlite3SelectPrep() will invoke both sqlite3SelectExpand() and
|
sl@0
|
916 |
** this routine in the correct order.
|
sl@0
|
917 |
*/
|
sl@0
|
918 |
if( (p->selFlags & SF_Expanded)==0 ){
|
sl@0
|
919 |
sqlite3SelectPrep(pParse, p, pOuterNC);
|
sl@0
|
920 |
return (pParse->nErr || db->mallocFailed) ? WRC_Abort : WRC_Prune;
|
sl@0
|
921 |
}
|
sl@0
|
922 |
|
sl@0
|
923 |
isCompound = p->pPrior!=0;
|
sl@0
|
924 |
nCompound = 0;
|
sl@0
|
925 |
pLeftmost = p;
|
sl@0
|
926 |
while( p ){
|
sl@0
|
927 |
assert( (p->selFlags & SF_Expanded)!=0 );
|
sl@0
|
928 |
assert( (p->selFlags & SF_Resolved)==0 );
|
sl@0
|
929 |
p->selFlags |= SF_Resolved;
|
sl@0
|
930 |
|
sl@0
|
931 |
/* Resolve the expressions in the LIMIT and OFFSET clauses. These
|
sl@0
|
932 |
** are not allowed to refer to any names, so pass an empty NameContext.
|
sl@0
|
933 |
*/
|
sl@0
|
934 |
memset(&sNC, 0, sizeof(sNC));
|
sl@0
|
935 |
sNC.pParse = pParse;
|
sl@0
|
936 |
if( sqlite3ResolveExprNames(&sNC, p->pLimit) ||
|
sl@0
|
937 |
sqlite3ResolveExprNames(&sNC, p->pOffset) ){
|
sl@0
|
938 |
return WRC_Abort;
|
sl@0
|
939 |
}
|
sl@0
|
940 |
|
sl@0
|
941 |
/* Set up the local name-context to pass to sqlite3ResolveExprNames() to
|
sl@0
|
942 |
** resolve the result-set expression list.
|
sl@0
|
943 |
*/
|
sl@0
|
944 |
sNC.allowAgg = 1;
|
sl@0
|
945 |
sNC.pSrcList = p->pSrc;
|
sl@0
|
946 |
sNC.pNext = pOuterNC;
|
sl@0
|
947 |
|
sl@0
|
948 |
/* Resolve names in the result set. */
|
sl@0
|
949 |
pEList = p->pEList;
|
sl@0
|
950 |
assert( pEList!=0 );
|
sl@0
|
951 |
for(i=0; i<pEList->nExpr; i++){
|
sl@0
|
952 |
Expr *pX = pEList->a[i].pExpr;
|
sl@0
|
953 |
if( sqlite3ResolveExprNames(&sNC, pX) ){
|
sl@0
|
954 |
return WRC_Abort;
|
sl@0
|
955 |
}
|
sl@0
|
956 |
}
|
sl@0
|
957 |
|
sl@0
|
958 |
/* Recursively resolve names in all subqueries
|
sl@0
|
959 |
*/
|
sl@0
|
960 |
for(i=0; i<p->pSrc->nSrc; i++){
|
sl@0
|
961 |
struct SrcList_item *pItem = &p->pSrc->a[i];
|
sl@0
|
962 |
if( pItem->pSelect ){
|
sl@0
|
963 |
const char *zSavedContext = pParse->zAuthContext;
|
sl@0
|
964 |
if( pItem->zName ) pParse->zAuthContext = pItem->zName;
|
sl@0
|
965 |
sqlite3ResolveSelectNames(pParse, pItem->pSelect, &sNC);
|
sl@0
|
966 |
pParse->zAuthContext = zSavedContext;
|
sl@0
|
967 |
if( pParse->nErr || db->mallocFailed ) return WRC_Abort;
|
sl@0
|
968 |
}
|
sl@0
|
969 |
}
|
sl@0
|
970 |
|
sl@0
|
971 |
/* If there are no aggregate functions in the result-set, and no GROUP BY
|
sl@0
|
972 |
** expression, do not allow aggregates in any of the other expressions.
|
sl@0
|
973 |
*/
|
sl@0
|
974 |
assert( (p->selFlags & SF_Aggregate)==0 );
|
sl@0
|
975 |
pGroupBy = p->pGroupBy;
|
sl@0
|
976 |
if( pGroupBy || sNC.hasAgg ){
|
sl@0
|
977 |
p->selFlags |= SF_Aggregate;
|
sl@0
|
978 |
}else{
|
sl@0
|
979 |
sNC.allowAgg = 0;
|
sl@0
|
980 |
}
|
sl@0
|
981 |
|
sl@0
|
982 |
/* If a HAVING clause is present, then there must be a GROUP BY clause.
|
sl@0
|
983 |
*/
|
sl@0
|
984 |
if( p->pHaving && !pGroupBy ){
|
sl@0
|
985 |
sqlite3ErrorMsg(pParse, "a GROUP BY clause is required before HAVING");
|
sl@0
|
986 |
return WRC_Abort;
|
sl@0
|
987 |
}
|
sl@0
|
988 |
|
sl@0
|
989 |
/* Add the expression list to the name-context before parsing the
|
sl@0
|
990 |
** other expressions in the SELECT statement. This is so that
|
sl@0
|
991 |
** expressions in the WHERE clause (etc.) can refer to expressions by
|
sl@0
|
992 |
** aliases in the result set.
|
sl@0
|
993 |
**
|
sl@0
|
994 |
** Minor point: If this is the case, then the expression will be
|
sl@0
|
995 |
** re-evaluated for each reference to it.
|
sl@0
|
996 |
*/
|
sl@0
|
997 |
sNC.pEList = p->pEList;
|
sl@0
|
998 |
if( sqlite3ResolveExprNames(&sNC, p->pWhere) ||
|
sl@0
|
999 |
sqlite3ResolveExprNames(&sNC, p->pHaving)
|
sl@0
|
1000 |
){
|
sl@0
|
1001 |
return WRC_Abort;
|
sl@0
|
1002 |
}
|
sl@0
|
1003 |
|
sl@0
|
1004 |
/* The ORDER BY and GROUP BY clauses may not refer to terms in
|
sl@0
|
1005 |
** outer queries
|
sl@0
|
1006 |
*/
|
sl@0
|
1007 |
sNC.pNext = 0;
|
sl@0
|
1008 |
sNC.allowAgg = 1;
|
sl@0
|
1009 |
|
sl@0
|
1010 |
/* Process the ORDER BY clause for singleton SELECT statements.
|
sl@0
|
1011 |
** The ORDER BY clause for compounds SELECT statements is handled
|
sl@0
|
1012 |
** below, after all of the result-sets for all of the elements of
|
sl@0
|
1013 |
** the compound have been resolved.
|
sl@0
|
1014 |
*/
|
sl@0
|
1015 |
if( !isCompound && resolveOrderGroupBy(&sNC, p, p->pOrderBy, "ORDER") ){
|
sl@0
|
1016 |
return WRC_Abort;
|
sl@0
|
1017 |
}
|
sl@0
|
1018 |
if( db->mallocFailed ){
|
sl@0
|
1019 |
return WRC_Abort;
|
sl@0
|
1020 |
}
|
sl@0
|
1021 |
|
sl@0
|
1022 |
/* Resolve the GROUP BY clause. At the same time, make sure
|
sl@0
|
1023 |
** the GROUP BY clause does not contain aggregate functions.
|
sl@0
|
1024 |
*/
|
sl@0
|
1025 |
if( pGroupBy ){
|
sl@0
|
1026 |
struct ExprList_item *pItem;
|
sl@0
|
1027 |
|
sl@0
|
1028 |
if( resolveOrderGroupBy(&sNC, p, pGroupBy, "GROUP") || db->mallocFailed ){
|
sl@0
|
1029 |
return WRC_Abort;
|
sl@0
|
1030 |
}
|
sl@0
|
1031 |
for(i=0, pItem=pGroupBy->a; i<pGroupBy->nExpr; i++, pItem++){
|
sl@0
|
1032 |
if( ExprHasProperty(pItem->pExpr, EP_Agg) ){
|
sl@0
|
1033 |
sqlite3ErrorMsg(pParse, "aggregate functions are not allowed in "
|
sl@0
|
1034 |
"the GROUP BY clause");
|
sl@0
|
1035 |
return WRC_Abort;
|
sl@0
|
1036 |
}
|
sl@0
|
1037 |
}
|
sl@0
|
1038 |
}
|
sl@0
|
1039 |
|
sl@0
|
1040 |
/* Advance to the next term of the compound
|
sl@0
|
1041 |
*/
|
sl@0
|
1042 |
p = p->pPrior;
|
sl@0
|
1043 |
nCompound++;
|
sl@0
|
1044 |
}
|
sl@0
|
1045 |
|
sl@0
|
1046 |
/* Resolve the ORDER BY on a compound SELECT after all terms of
|
sl@0
|
1047 |
** the compound have been resolved.
|
sl@0
|
1048 |
*/
|
sl@0
|
1049 |
if( isCompound && resolveCompoundOrderBy(pParse, pLeftmost) ){
|
sl@0
|
1050 |
return WRC_Abort;
|
sl@0
|
1051 |
}
|
sl@0
|
1052 |
|
sl@0
|
1053 |
return WRC_Prune;
|
sl@0
|
1054 |
}
|
sl@0
|
1055 |
|
sl@0
|
1056 |
/*
|
sl@0
|
1057 |
** This routine walks an expression tree and resolves references to
|
sl@0
|
1058 |
** table columns and result-set columns. At the same time, do error
|
sl@0
|
1059 |
** checking on function usage and set a flag if any aggregate functions
|
sl@0
|
1060 |
** are seen.
|
sl@0
|
1061 |
**
|
sl@0
|
1062 |
** To resolve table columns references we look for nodes (or subtrees) of the
|
sl@0
|
1063 |
** form X.Y.Z or Y.Z or just Z where
|
sl@0
|
1064 |
**
|
sl@0
|
1065 |
** X: The name of a database. Ex: "main" or "temp" or
|
sl@0
|
1066 |
** the symbolic name assigned to an ATTACH-ed database.
|
sl@0
|
1067 |
**
|
sl@0
|
1068 |
** Y: The name of a table in a FROM clause. Or in a trigger
|
sl@0
|
1069 |
** one of the special names "old" or "new".
|
sl@0
|
1070 |
**
|
sl@0
|
1071 |
** Z: The name of a column in table Y.
|
sl@0
|
1072 |
**
|
sl@0
|
1073 |
** The node at the root of the subtree is modified as follows:
|
sl@0
|
1074 |
**
|
sl@0
|
1075 |
** Expr.op Changed to TK_COLUMN
|
sl@0
|
1076 |
** Expr.pTab Points to the Table object for X.Y
|
sl@0
|
1077 |
** Expr.iColumn The column index in X.Y. -1 for the rowid.
|
sl@0
|
1078 |
** Expr.iTable The VDBE cursor number for X.Y
|
sl@0
|
1079 |
**
|
sl@0
|
1080 |
**
|
sl@0
|
1081 |
** To resolve result-set references, look for expression nodes of the
|
sl@0
|
1082 |
** form Z (with no X and Y prefix) where the Z matches the right-hand
|
sl@0
|
1083 |
** size of an AS clause in the result-set of a SELECT. The Z expression
|
sl@0
|
1084 |
** is replaced by a copy of the left-hand side of the result-set expression.
|
sl@0
|
1085 |
** Table-name and function resolution occurs on the substituted expression
|
sl@0
|
1086 |
** tree. For example, in:
|
sl@0
|
1087 |
**
|
sl@0
|
1088 |
** SELECT a+b AS x, c+d AS y FROM t1 ORDER BY x;
|
sl@0
|
1089 |
**
|
sl@0
|
1090 |
** The "x" term of the order by is replaced by "a+b" to render:
|
sl@0
|
1091 |
**
|
sl@0
|
1092 |
** SELECT a+b AS x, c+d AS y FROM t1 ORDER BY a+b;
|
sl@0
|
1093 |
**
|
sl@0
|
1094 |
** Function calls are checked to make sure that the function is
|
sl@0
|
1095 |
** defined and that the correct number of arguments are specified.
|
sl@0
|
1096 |
** If the function is an aggregate function, then the pNC->hasAgg is
|
sl@0
|
1097 |
** set and the opcode is changed from TK_FUNCTION to TK_AGG_FUNCTION.
|
sl@0
|
1098 |
** If an expression contains aggregate functions then the EP_Agg
|
sl@0
|
1099 |
** property on the expression is set.
|
sl@0
|
1100 |
**
|
sl@0
|
1101 |
** An error message is left in pParse if anything is amiss. The number
|
sl@0
|
1102 |
** if errors is returned.
|
sl@0
|
1103 |
*/
|
sl@0
|
1104 |
int sqlite3ResolveExprNames(
|
sl@0
|
1105 |
NameContext *pNC, /* Namespace to resolve expressions in. */
|
sl@0
|
1106 |
Expr *pExpr /* The expression to be analyzed. */
|
sl@0
|
1107 |
){
|
sl@0
|
1108 |
int savedHasAgg;
|
sl@0
|
1109 |
Walker w;
|
sl@0
|
1110 |
|
sl@0
|
1111 |
if( pExpr==0 ) return 0;
|
sl@0
|
1112 |
#if SQLITE_MAX_EXPR_DEPTH>0
|
sl@0
|
1113 |
{
|
sl@0
|
1114 |
Parse *pParse = pNC->pParse;
|
sl@0
|
1115 |
if( sqlite3ExprCheckHeight(pParse, pExpr->nHeight+pNC->pParse->nHeight) ){
|
sl@0
|
1116 |
return 1;
|
sl@0
|
1117 |
}
|
sl@0
|
1118 |
pParse->nHeight += pExpr->nHeight;
|
sl@0
|
1119 |
}
|
sl@0
|
1120 |
#endif
|
sl@0
|
1121 |
savedHasAgg = pNC->hasAgg;
|
sl@0
|
1122 |
pNC->hasAgg = 0;
|
sl@0
|
1123 |
w.xExprCallback = resolveExprStep;
|
sl@0
|
1124 |
w.xSelectCallback = resolveSelectStep;
|
sl@0
|
1125 |
w.pParse = pNC->pParse;
|
sl@0
|
1126 |
w.u.pNC = pNC;
|
sl@0
|
1127 |
sqlite3WalkExpr(&w, pExpr);
|
sl@0
|
1128 |
#if SQLITE_MAX_EXPR_DEPTH>0
|
sl@0
|
1129 |
pNC->pParse->nHeight -= pExpr->nHeight;
|
sl@0
|
1130 |
#endif
|
sl@0
|
1131 |
if( pNC->nErr>0 ){
|
sl@0
|
1132 |
ExprSetProperty(pExpr, EP_Error);
|
sl@0
|
1133 |
}
|
sl@0
|
1134 |
if( pNC->hasAgg ){
|
sl@0
|
1135 |
ExprSetProperty(pExpr, EP_Agg);
|
sl@0
|
1136 |
}else if( savedHasAgg ){
|
sl@0
|
1137 |
pNC->hasAgg = 1;
|
sl@0
|
1138 |
}
|
sl@0
|
1139 |
return ExprHasProperty(pExpr, EP_Error);
|
sl@0
|
1140 |
}
|
sl@0
|
1141 |
|
sl@0
|
1142 |
|
sl@0
|
1143 |
/*
|
sl@0
|
1144 |
** Resolve all names in all expressions of a SELECT and in all
|
sl@0
|
1145 |
** decendents of the SELECT, including compounds off of p->pPrior,
|
sl@0
|
1146 |
** subqueries in expressions, and subqueries used as FROM clause
|
sl@0
|
1147 |
** terms.
|
sl@0
|
1148 |
**
|
sl@0
|
1149 |
** See sqlite3ResolveExprNames() for a description of the kinds of
|
sl@0
|
1150 |
** transformations that occur.
|
sl@0
|
1151 |
**
|
sl@0
|
1152 |
** All SELECT statements should have been expanded using
|
sl@0
|
1153 |
** sqlite3SelectExpand() prior to invoking this routine.
|
sl@0
|
1154 |
*/
|
sl@0
|
1155 |
void sqlite3ResolveSelectNames(
|
sl@0
|
1156 |
Parse *pParse, /* The parser context */
|
sl@0
|
1157 |
Select *p, /* The SELECT statement being coded. */
|
sl@0
|
1158 |
NameContext *pOuterNC /* Name context for parent SELECT statement */
|
sl@0
|
1159 |
){
|
sl@0
|
1160 |
Walker w;
|
sl@0
|
1161 |
|
sl@0
|
1162 |
assert( p!=0 );
|
sl@0
|
1163 |
w.xExprCallback = resolveExprStep;
|
sl@0
|
1164 |
w.xSelectCallback = resolveSelectStep;
|
sl@0
|
1165 |
w.pParse = pParse;
|
sl@0
|
1166 |
w.u.pNC = pOuterNC;
|
sl@0
|
1167 |
sqlite3WalkSelect(&w, p);
|
sl@0
|
1168 |
}
|