diff options
author | drh <> | 2024-06-03 12:36:43 +0000 |
---|---|---|
committer | drh <> | 2024-06-03 12:36:43 +0000 |
commit | 586b2b2a540873f41c8b1581a5f2a0651b57743f (patch) | |
tree | d2d1369a0821df79c5e0f1cf75d6afef6143fda7 /src | |
parent | e1b55a5af9d65aa33d6fcfb68e9a998bd2af0985 (diff) | |
download | sqlite-586b2b2a540873f41c8b1581a5f2a0651b57743f.tar.gz sqlite-586b2b2a540873f41c8b1581a5f2a0651b57743f.zip |
Omit an unused #define.
FossilOrigin-Name: 9c2de28a146e4cdfa4c05bf8dbd4ebb1156c71104001edf68e6dd5db21deb91f
Diffstat (limited to 'src')
-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 f4f8fc5e4..7d313e408 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3460,7 +3460,7 @@ struct NameContext { #define NC_UUpsert 0x000200 /* True if uNC.pUpsert is used */ #define NC_UBaseReg 0x000400 /* True if uNC.iBaseReg is used */ #define NC_MinMaxAgg 0x001000 /* min/max aggregates seen. See note above */ -#define NC_Complex 0x002000 /* True if a function or subquery seen */ +/* 0x002000 // available for reuse */ #define NC_AllowWin 0x004000 /* Window functions are allowed here */ #define NC_HasWin 0x008000 /* One or more window functions seen */ #define NC_IsDDL 0x010000 /* Resolving names in a CREATE statement */ |