1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-10 01:02:56 +03:00

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
This commit is contained in:
drh
2015-08-24 20:21:20 +00:00
parent 8981b904b5
commit 108aa00a87
8 changed files with 135 additions and 95 deletions

View File

@@ -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;
}
/*