diff options
author | drh <drh@noemail.net> | 2020-06-09 11:59:15 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-06-09 11:59:15 +0000 |
commit | e26d428a5900bb0cbfbb4e3857ff6343e7664cfe (patch) | |
tree | 5c1ba24588e6858fb63066c0bdc108cb6b7ec0c2 /src/sqliteInt.h | |
parent | 5c10930fa9df10de8bc50859cf4289bf3ddb4d97 (diff) | |
download | sqlite-e26d428a5900bb0cbfbb4e3857ff6343e7664cfe.tar.gz sqlite-e26d428a5900bb0cbfbb4e3857ff6343e7664cfe.zip |
Improved tree-view debugging output for aggregate functions.
FossilOrigin-Name: b5711b4eead10ef4b0b61f2e2c54768d215a4105f6d47d2ea78991b6e53a6831
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 0b71ef42b..0cd33baa0 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2523,9 +2523,7 @@ struct AggInfo { int iDistinct; /* Ephemeral table used to enforce DISTINCT */ } *aFunc; int nFunc; /* Number of entries in aFunc[] */ -#ifdef SQLITE_DEBUG - int iAggMagic; /* Magic number when valid */ -#endif + u32 selId; /* Select to which this AggInfo belongs */ AggInfo *pNext; /* Next in list of them all */ }; |