Re: Use uppercase keywords in foreign key tutorial

From: Nathan Bossart <nathandbossart(at)gmail(dot)com>
To: Euler Taveira <euler(at)eulerto(dot)com>
Cc: David Rowley <dgrowleyml(at)gmail(dot)com>, Erik Wienhold <ewie(at)ewie(dot)name>, pgsql-docs(at)lists(dot)postgresql(dot)org
Subject: Re: Use uppercase keywords in foreign key tutorial
Date: 2025-10-28 21:34:45
Message-ID: aQE29YG5pY4Cl8ym@nathan
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-docs

I noticed the patch also changes some column types to lowercase:

<programlisting>
CREATE TYPE tablefunc_crosstab_N AS (
- row_name TEXT,
- category_1 TEXT,
- category_2 TEXT,
+ row_name text,
+ category_1 text,
+ category_2 text,
.
.
.
- category_N TEXT
+ category_N text
);
</programlisting>

FWIW I tend to use uppercase for those, too, but I'm not sure there is a
preferred style for the docs.

--
nathan

In response to

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message jian he 2025-10-29 13:28:07 copy.sgml: add XML ID attributes to <varlistentry> tags.
Previous Message Oleg 2025-10-25 19:01:16 Re: Documentation improvement patch