diff options
author | drh <drh@noemail.net> | 2015-08-24 20:21:20 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-08-24 20:21:20 +0000 |
commit | 108aa00a87e19312fa04b9cbaf98c8587128ab86 (patch) | |
tree | fe6a6d7f582696dcd274881b10dc983e59297d0b /src/expr.c | |
parent | 8981b904b545ad056ad2f6eb0ebef6a6b9606b5b (diff) | |
download | sqlite-108aa00a87e19312fa04b9cbaf98c8587128ab86.tar.gz sqlite-108aa00a87e19312fa04b9cbaf98c8587128ab86.zip |
Enhances the parser so that it accepts arbitrary expressions for the arguments
of an index, though the code generator still rejects everything other than
simple column names. The sqlite3RestrictColumnListSyntax() routine is removed
since that feature is now handled by the parser.
FossilOrigin-Name: bed42116addabcf3dfdc2e2d51ae183965704988
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index 1c57ecc6f..1aebef6b1 100644 --- a/src/expr.c +++ b/src/expr.c @@ -1172,7 +1172,6 @@ void sqlite3ExprListSetSortOrder(ExprList *p, int iSortOrder){ return; } p->a[p->nExpr-1].sortOrder = (u8)iSortOrder; - p->a[p->nExpr-1].bDefinedSO = 1; } /* |