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