diff options
author | drh <> | 2022-07-22 19:28:04 +0000 |
---|---|---|
committer | drh <> | 2022-07-22 19:28:04 +0000 |
commit | 825fa17b1f220e9ba45757251becdde41958ae8e (patch) | |
tree | ed5e03445191e50784c5047f651aae4c32f12488 /src/sqliteInt.h | |
parent | 034d11180796267db921a5faba2d98ec6d73fe48 (diff) | |
download | sqlite-825fa17b1f220e9ba45757251becdde41958ae8e.tar.gz sqlite-825fa17b1f220e9ba45757251becdde41958ae8e.zip |
Omit the EP_MemToken flag that was made obsolete by [e1f1cfe7f4387b60], for
a size reduction and performance increase.
FossilOrigin-Name: 28934a9d92d5e5ac862a0dc7169f071f39047f98dc79441db697cf353a4b9433
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 106a5d147..c6bdd3dd3 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2886,7 +2886,7 @@ struct Expr { #define EP_Reduced 0x004000 /* Expr struct EXPR_REDUCEDSIZE bytes only */ #define EP_Win 0x008000 /* Contains window functions */ #define EP_TokenOnly 0x010000 /* Expr struct EXPR_TOKENONLYSIZE bytes only */ -#define EP_MemToken 0x020000 /* Need to sqlite3DbFree() Expr.zToken */ + /* 0x020000 // Available for reuse */ #define EP_IfNullRow 0x040000 /* The TK_IF_NULL_ROW opcode */ #define EP_Unlikely 0x080000 /* unlikely() or likelihood() function */ #define EP_ConstFunc 0x100000 /* A SQLITE_FUNC_CONSTANT or _SLOCHNG function */ |