mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
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/d2e1afd4-659c-50d6-1b20-7cfd3675e909@2ndquadrant.com
This commit is contained in:
@ -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;
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user