Re: doc: create table improvements

Peter Eisentraut <peter@eisentraut.org>

From: Peter Eisentraut <peter@eisentraut.org>
To: "David G. Johnston" <david.g.johnston@gmail.com>, PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2024-04-24T10:30:30Z
Lists: pgsql-hackers

Commits

Same data as JSON: GET /api/v1/messages/:b64id/commits the thread's linked commits as JSON, with link sources. API reference →
  1. Doc: declutter CREATE TABLE synopsis.

  2. Remove support for unlogged on partitioned tables

 > +   The reliability characteristics of a table are governed by its
 > +   persistence mode.  The default mode is described
 > +   <link linkend="wal-reliability">here</link>
 > +   There are two alternative modes that can be specified during
 > +   table creation:
 > +   <link linkend="sql-createtable-temporary">temporary</link> and
 > +   <link linkend="sql-createtable-unlogged">unlogged</link>.

Not sure reliability is the best word here.  I mean, a temporary table 
isn't any less reliable than any other table.  It just does different 
things.