diff options
| author | Tom Lane | 2018-05-21 15:41:42 +0000 |
|---|---|---|
| committer | Tom Lane | 2018-05-21 15:41:42 +0000 |
| commit | f755a152d4e3e6f913c6b7b6afe1785b1171c1cb (patch) | |
| tree | 9b41cd5b2fa3f56628429244a2925ae97ad032eb /src/include/executor/nodeAgg.h | |
| parent | 3f5e3a98443c7f437465d79e4b99a0a661ae1b9b (diff) | |
Improve spelling of new FINALFUNC_MODIFY aggregate attribute.
I'd used SHARABLE as a value originally, but Peter Eisentraut points out
that dictionaries agree that SHAREABLE is the preferred spelling.
Run around and change that before it's too late.
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'src/include/executor/nodeAgg.h')
| -rw-r--r-- | src/include/executor/nodeAgg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/executor/nodeAgg.h b/src/include/executor/nodeAgg.h index ab55be8f113..8fb8c8fe802 100644 --- a/src/include/executor/nodeAgg.h +++ b/src/include/executor/nodeAgg.h @@ -216,10 +216,10 @@ typedef struct AggStatePerAggData bool resulttypeByVal; /* - * "sharable" is false if this agg cannot share state values with other + * "shareable" is false if this agg cannot share state values with other * aggregates because the final function is read-write. */ - bool sharable; + bool shareable; } AggStatePerAggData; /* |
