diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-05-21 11:41:42 -0400 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-05-21 11:41:42 -0400 |
| commit | f755a152d4e3e6f913c6b7b6afe1785b1171c1cb (patch) | |
| tree | 9b41cd5b2fa3f56628429244a2925ae97ad032eb /src/include/catalog/pg_aggregate.h | |
| parent | 3f5e3a98443c7f437465d79e4b99a0a661ae1b9b (diff) | |
| download | postgresql-f755a152d4e3e6f913c6b7b6afe1785b1171c1cb.tar.gz | |
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
Diffstat (limited to 'src/include/catalog/pg_aggregate.h')
| -rw-r--r-- | src/include/catalog/pg_aggregate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/catalog/pg_aggregate.h b/src/include/catalog/pg_aggregate.h index 72dd581e7a..bcae93f5e1 100644 --- a/src/include/catalog/pg_aggregate.h +++ b/src/include/catalog/pg_aggregate.h @@ -134,7 +134,7 @@ typedef FormData_pg_aggregate *Form_pg_aggregate; * transfn cannot be applied anymore after the first finalfn call. */ #define AGGMODIFY_READ_ONLY 'r' -#define AGGMODIFY_SHARABLE 's' +#define AGGMODIFY_SHAREABLE 's' #define AGGMODIFY_READ_WRITE 'w' #endif /* EXPOSE_TO_CLIENT_CODE */ |
