diff options
author | drh <drh@noemail.net> | 2016-12-26 00:18:36 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2016-12-26 00:18:36 +0000 |
commit | a1a523a5bb3628a833065d43d8035cfa8249fc16 (patch) | |
tree | 3cfb1bbb766a3aad2a1727a87b0cf823b0805ea3 /src/sqliteInt.h | |
parent | beaf514e2300cfdaa2d606fc9f3b9cbe89afaefc (diff) | |
download | sqlite-a1a523a5bb3628a833065d43d8035cfa8249fc16.tar.gz sqlite-a1a523a5bb3628a833065d43d8035cfa8249fc16.zip |
Add the built-in affinity() SQL function.
FossilOrigin-Name: 57e40e1cb1bcd3dd8473d2fdeecc9c7ff3d6192b
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index d78d2072d..c4aaf3924 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1561,6 +1561,7 @@ struct FuncDestructor { #define SQLITE_FUNC_MINMAX 0x1000 /* True for min() and max() aggregates */ #define SQLITE_FUNC_SLOCHNG 0x2000 /* "Slow Change". Value constant during a ** single query - might change over time */ +#define SQLITE_FUNC_AFFINITY 0x4000 /* Built-in affinity() function */ /* ** The following three macros, FUNCTION(), LIKEFUNC() and AGGREGATE() are |