diff options
author | drh <drh@noemail.net> | 2020-05-13 17:26:38 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-05-13 17:26:38 +0000 |
commit | ffe421c76ad11c29287cbabe3548a7d95569ac37 (patch) | |
tree | 10cede169963aa88488ec765cd183cc27bb3b306 /src/sqliteInt.h | |
parent | 8b4f231c471389428c91e7a6c13583a3f13d1d53 (diff) | |
download | sqlite-ffe421c76ad11c29287cbabe3548a7d95569ac37.tar.gz sqlite-ffe421c76ad11c29287cbabe3548a7d95569ac37.zip |
Remove unused constant SQLITE_FUNC_COALESCE.
FossilOrigin-Name: a116b20f863e9732cd08fbfbb1aa48204a17d611c9c1edde85dcf59310bde782
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 5ae69e873..d80337fbf 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1764,7 +1764,7 @@ struct FuncDestructor { #define SQLITE_FUNC_LENGTH 0x0040 /* Built-in length() function */ #define SQLITE_FUNC_TYPEOF 0x0080 /* Built-in typeof() function */ #define SQLITE_FUNC_COUNT 0x0100 /* Built-in count(*) aggregate */ -#define SQLITE_FUNC_COALESCE 0x0200 /* Built-in coalesce() or ifnull() */ +/* 0x0200 -- available for reuse */ #define SQLITE_FUNC_UNLIKELY 0x0400 /* Built-in unlikely() function */ #define SQLITE_FUNC_CONSTANT 0x0800 /* Constant inputs give a constant output */ #define SQLITE_FUNC_MINMAX 0x1000 /* True for min() and max() aggregates */ |