aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/pathnodes.h
diff options
context:
space:
mode:
authorJeff Davis <jdavis@postgresql.org>2020-02-28 09:32:35 -0800
committerJeff Davis <jdavis@postgresql.org>2020-02-28 09:35:11 -0800
commit32bb4535a0be892f4a2794a26ba429032f4ae51e (patch)
tree54288506c8e4508b8b1251f5210344f7a051c203 /src/include/nodes/pathnodes.h
parent963ea55c34cc325243fd30468ce8c629572f0c73 (diff)
downloadpostgresql-32bb4535a0be892f4a2794a26ba429032f4ae51e.tar.gz
postgresql-32bb4535a0be892f4a2794a26ba429032f4ae51e.zip
Fix commit c11cb17d.
I neglected to update copyfuncs/outfuncs/readfuncs. Discussion: https://postgr.es/m/12491.1582833409%40sss.pgh.pa.us
Diffstat (limited to 'src/include/nodes/pathnodes.h')
-rw-r--r--src/include/nodes/pathnodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/pathnodes.h b/src/include/nodes/pathnodes.h
index a580c94e32c..0ceb8096442 100644
--- a/src/include/nodes/pathnodes.h
+++ b/src/include/nodes/pathnodes.h
@@ -1663,7 +1663,7 @@ typedef struct AggPath
AggStrategy aggstrategy; /* basic strategy, see nodes.h */
AggSplit aggsplit; /* agg-splitting mode, see nodes.h */
double numGroups; /* estimated number of groups in input */
- Size transitionSpace; /* for pass-by-ref transition data */
+ uint64 transitionSpace; /* for pass-by-ref transition data */
List *groupClause; /* a list of SortGroupClause's */
List *qual; /* quals (HAVING quals), if any */
} AggPath;
@@ -1701,7 +1701,7 @@ typedef struct GroupingSetsPath
AggStrategy aggstrategy; /* basic strategy */
List *rollups; /* list of RollupData */
List *qual; /* quals (HAVING quals), if any */
- Size transitionSpace; /* for pass-by-ref transition data */
+ uint64 transitionSpace; /* for pass-by-ref transition data */
} GroupingSetsPath;
/*