diff options
author | drh <> | 2022-11-22 14:31:13 +0000 |
---|---|---|
committer | drh <> | 2022-11-22 14:31:13 +0000 |
commit | 89e5dfac01904ef55be9f2e5c007b25d57bc0263 (patch) | |
tree | 5444eef5f821a3666fd636d5ff2a825c4a01d2ab /src/sqliteInt.h | |
parent | 42b78237cdd11b79e4c37d0373a338c1409f8283 (diff) | |
download | sqlite-89e5dfac01904ef55be9f2e5c007b25d57bc0263.tar.gz sqlite-89e5dfac01904ef55be9f2e5c007b25d57bc0263.zip |
Omit the unnecessary AggInfo.mnReg field.
FossilOrigin-Name: d79c58ef08b917bacc0f24d210d8eb23f659f955c219b4757af42eee8f17099b
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index d4ffaa225..68dbb3ab9 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2719,7 +2719,6 @@ struct AggInfo { int sortingIdx; /* Cursor number of the sorting index */ int sortingIdxPTab; /* Cursor number of pseudo-table */ int nSortingColumn; /* Number of columns in the sorting index */ - int mnReg; /* First in a range of regsiters for aCol and aFunc */ ExprList *pGroupBy; /* The group by clause */ struct AggInfo_col { /* For each column used in source tables */ Table *pTab; /* Source table */ |