diff options
author | drh <drh@noemail.net> | 2004-10-04 13:19:23 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2004-10-04 13:19:23 +0000 |
commit | f2bc013c7011580ae976e5d7a978863b3f84a52d (patch) | |
tree | 8fdf6922f04914830682242910be66e9d5a58b26 /src/sqliteInt.h | |
parent | 9c105bb990007c678ca28e63b764f8d0b557d5f9 (diff) | |
download | sqlite-f2bc013c7011580ae976e5d7a978863b3f84a52d.tar.gz sqlite-f2bc013c7011580ae976e5d7a978863b3f84a52d.zip |
Save about 800 bytes of code space by aligning TK_ and OP_ constants so that
we do not have to translate between them. (CVS 1998)
FossilOrigin-Name: 4c817e3f293a9c1365e632f7dc13ae440263332a
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 e8946f256..7b4c4fc0e 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.325 2004/10/01 02:00:31 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.326 2004/10/04 13:19:24 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -767,9 +767,9 @@ struct Token { struct Expr { u8 op; /* Operation performed by this node */ char affinity; /* The affinity of the column or 0 if not a column */ - CollSeq *pColl; /* The collation type of the column or 0 */ u8 iDb; /* Database referenced by this expression */ u8 flags; /* Various flags. See below */ + CollSeq *pColl; /* The collation type of the column or 0 */ Expr *pLeft, *pRight; /* Left and right subnodes */ ExprList *pList; /* A list of expressions used as function arguments ** or in "<expr> IN (<expr-list)" */ |