diff options
author | drh <drh@noemail.net> | 2002-01-22 03:13:42 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2002-01-22 03:13:42 +0000 |
commit | a2e00042a10c1ad3f75827ff0545f3af8d02f9e3 (patch) | |
tree | 0dc62b86634098137ac44f7cdbd0a08be8d16b53 /src/sqliteInt.h | |
parent | 555fcb489bcdf5b8386be0ea661eae02a52ce1eb (diff) | |
download | sqlite-a2e00042a10c1ad3f75827ff0545f3af8d02f9e3.tar.gz sqlite-a2e00042a10c1ad3f75827ff0545f3af8d02f9e3.zip |
The right-hand side of an AS in a SELECT can be used within expressions of
the WHERE, ORDER BY, GROUP BY, and/or HAVING clauses. (CVS 350)
FossilOrigin-Name: 3684beab0f8a71ebdf453871bbde7a9ab1f65385
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 11129c942..88e7a56f8 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.77 2002/01/16 21:00:27 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.78 2002/01/22 03:13:42 drh Exp $ */ #include "sqlite.h" #include "hash.h" @@ -517,7 +517,7 @@ char *sqliteTableNameFromToken(Token*); int sqliteExprCheck(Parse*, Expr*, int, int*); int sqliteExprCompare(Expr*, Expr*); int sqliteFuncId(Token*); -int sqliteExprResolveIds(Parse*, IdList*, Expr*); +int sqliteExprResolveIds(Parse*, IdList*, ExprList*, Expr*); void sqliteExprResolveInSelect(Parse*, Expr*); int sqliteExprAnalyzeAggregates(Parse*, Expr*); void sqliteParseInfoReset(Parse*); |