diff options
author | dan <Dan Kennedy> | 2024-10-05 17:37:19 +0000 |
---|---|---|
committer | dan <Dan Kennedy> | 2024-10-05 17:37:19 +0000 |
commit | c857b9eb5d9cfab1366fb80e5d1c306e340b6d65 (patch) | |
tree | ec8b3498483cef7b6587a9bc5409e81b24225700 /src/sqliteInt.h | |
parent | 706fdeebb834a11fedc5e9473f951af79e6f2d65 (diff) | |
download | sqlite-c857b9eb5d9cfab1366fb80e5d1c306e340b6d65.tar.gz sqlite-c857b9eb5d9cfab1366fb80e5d1c306e340b6d65.zip |
Experimental change to allow expressions with subtypes to be read from indexes in situations where they are not used as function parameters.
FossilOrigin-Name: ac63f98ad85a4dd1e49cc64b41f0ca0044153972c15d71c669f4bc3ec590e268
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 0e0035ce6..828878670 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3104,7 +3104,7 @@ struct Expr { #define EP_IsTrue 0x10000000 /* Always has boolean value of TRUE */ #define EP_IsFalse 0x20000000 /* Always has boolean value of FALSE */ #define EP_FromDDL 0x40000000 /* Originates from sqlite_schema */ - /* 0x80000000 // Available */ +#define EP_FuncArg 0x80000000 /* Is a function() argument */ /* The EP_Propagate mask is a set of properties that automatically propagate ** upwards into parent nodes. |