pgsql: Add missing pg_description strings for pg_type entries.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add missing pg_description strings for pg_type entries.
Date: 2018-09-20 20:06:25
Message-ID: E1g35DV-0004pk-9Q@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add missing pg_description strings for pg_type entries.

I noticed that all non-composite, non-array entries in pg_type.dat
had descr strings, except for "json" and the pseudo-types. The
lack for json seems certainly an oversight, and there's surely
little reason to not have entries for the pseudo-types either.
So add some.

"make reformat-dat-files" turned up some formatting issues in
pg_amop.dat, too, so fix those in passing.

No catversion bump since the backend doesn't care too much what is
in pg_description.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/b09a64d602a19c9a3cc69e4bb0f8986a6f5facf4

Modified Files
--------------
src/include/catalog/pg_amop.dat | 12 ++++++------
src/include/catalog/pg_type.dat | 28 +++++++++++++++++++---------
src/tools/pgindent/README | 6 ++++++
3 files changed, 31 insertions(+), 15 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2018-09-20 20:10:36 pgsql: Add a "return" statement to pacify perlcritic.
Previous Message Tom Lane 2018-09-20 19:14:55 pgsql: Teach genbki.pl to auto-generate pg_type entries for array types