diff options
author | drh <> | 2024-10-08 10:10:42 +0000 |
---|---|---|
committer | drh <> | 2024-10-08 10:10:42 +0000 |
commit | eaefd9ccc8cc73ecb17bdfceabcaff4d5285e837 (patch) | |
tree | 9301f1ec78df6f944ca0b424b8f12233cfdb5b4f /src/sqliteInt.h | |
parent | 2813eb3c9e64a706fdec47b3075ab33f1013d2af (diff) | |
parent | 7998b889e884b5752ac3c11da443022343ba1b8a (diff) | |
download | sqlite-eaefd9ccc8cc73ecb17bdfceabcaff4d5285e837.tar.gz sqlite-eaefd9ccc8cc73ecb17bdfceabcaff4d5285e837.zip |
Allow expressions with subtypes to be read from indexes unless they are
being used as direct or indirect parameters to SQLITE_SUBTYPE functions.
FossilOrigin-Name: 39a56a23fec24dd713905457b6d4ed7c148f88e325a26c376f1e6daf147c69c8
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..f88b9e67c 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_SubtArg 0x80000000 /* Is argument to SQLITE_SUBTYPE function */ /* The EP_Propagate mask is a set of properties that automatically propagate ** upwards into parent nodes. |