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

Fix a comment on a field of the ExprList object. No changes to code.

FossilOrigin-Name: bb8e264227175fc93f1c86a0083f8ad6c4ce2dc7
This commit is contained in:
drh
2017-02-16 16:26:53 +00:00
parent 6f271a421d
commit c5f4816fc5
3 changed files with 8 additions and 8 deletions

View File

@@ -2440,7 +2440,7 @@ struct Expr {
struct ExprList {
int nExpr; /* Number of expressions on the list */
struct ExprList_item { /* For each expression in the list */
Expr *pExpr; /* The list of expressions */
Expr *pExpr; /* The parse tree for this expression */
char *zName; /* Token associated with this expression */
char *zSpan; /* Original text of the expression */
u8 sortOrder; /* 1 for DESC or 0 for ASC */