diff options
author | drh <drh@noemail.net> | 2019-12-12 20:22:34 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-12-12 20:22:34 +0000 |
commit | 41cee66848afe40aba1e4d4a83bd50b6c33aaff0 (patch) | |
tree | d40d1f4dd674e9fc6ee4c0010f55b4fd52f35b74 /src/sqliteInt.h | |
parent | 0225d819c4ca87cd29cd6f58d50c75bcee6213bc (diff) | |
download | sqlite-41cee66848afe40aba1e4d4a83bd50b6c33aaff0.tar.gz sqlite-41cee66848afe40aba1e4d4a83bd50b6c33aaff0.zip |
Change the name of the Expr.a.zName field to zEName, so that it has a name
that is distinct from other fields and variables and is hence easier to
grep for.
FossilOrigin-Name: d3783357f8fa76c42a86f12b214522f0388c37773c36ab8c5ce0623abbc4436a
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index d01c8128b..3de659f79 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2662,7 +2662,7 @@ struct ExprList { int nExpr; /* Number of expressions on the list */ struct ExprList_item { /* For each expression in the list */ Expr *pExpr; /* The parse tree for this expression */ - char *zName; /* Token associated with this expression */ + char *zEName; /* Token associated with this expression */ char *zSpan; /* Original text of the expression */ u8 sortFlags; /* Mask of KEYINFO_ORDER_* flags */ unsigned done :1; /* A flag to indicate when processing is finished */ |