diff options
author | drh <> | 2023-12-14 13:58:50 +0000 |
---|---|---|
committer | drh <> | 2023-12-14 13:58:50 +0000 |
commit | 07117f8118f0f7858126c36ee4d202196f541330 (patch) | |
tree | 259e34c802201d16ca3a4ce648325235048dc9a1 /src/sqliteInt.h | |
parent | 3e4195c60db744c69bb24e71236631a80f2ef547 (diff) | |
download | sqlite-07117f8118f0f7858126c36ee4d202196f541330.tar.gz sqlite-07117f8118f0f7858126c36ee4d202196f541330.zip |
Pass subtype information through the aggregate ORDER BY sorter for
aggregate functions that use subtype information.
FossilOrigin-Name: 3536f4030eab6d650b7ed729d2f71eb6cc3b5fbe16b4e96b99008d66522aaccb
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 7d6596909..a21425a14 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2866,6 +2866,7 @@ struct AggInfo { int iOBTab; /* Ephemeral table to implement ORDER BY */ u8 bOBPayload; /* iOBTab has payload columns separate from key */ u8 bOBUnique; /* Enforce uniqueness on iOBTab keys */ + u8 bUseSubtype; /* Transfer subtype info through sorter */ } *aFunc; int nFunc; /* Number of entries in aFunc[] */ u32 selId; /* Select to which this AggInfo belongs */ |