diff options
author | David Rowley <drowley@postgresql.org> | 2022-08-03 09:46:02 +1200 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2022-08-03 09:46:02 +1200 |
commit | 9fc1776dda9f1ba6d36c4e7970218c3391f1bb2c (patch) | |
tree | 725e9e2938f441ebaeaa612ef34819bdaea25f9c /src | |
parent | ec62ce55a813db5c925d89a53b5b22baa509abb6 (diff) | |
download | postgresql-9fc1776dda9f1ba6d36c4e7970218c3391f1bb2c.tar.gz postgresql-9fc1776dda9f1ba6d36c4e7970218c3391f1bb2c.zip |
Remove unused fields from ExprEvalStep
These were added recently by 1349d2790.
Reported-by: Zhihong Yu
Discussion: https://postgr.es/m/CALNJ-vTi+YDuAWKp4Z_Dv=mrz=aq81qTg0D7wzc8y7rS_+i_cw@mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r-- | src/include/executor/execExpr.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/include/executor/execExpr.h b/src/include/executor/execExpr.h index 0739b389f3c..c8ef917ffe0 100644 --- a/src/include/executor/execExpr.h +++ b/src/include/executor/execExpr.h @@ -666,9 +666,6 @@ typedef struct ExprEvalStep { AggStatePerTrans pertrans; ExprContext *aggcontext; - int setno; - int transno; - int setoff; int jumpdistinct; } agg_presorted_distinctcheck; |