pgsql: Make partitions automatically inherit OIDs.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Make partitions automatically inherit OIDs.
Date: 2017-02-19 16:01:48
Message-ID: E1cfTvo-0002Np-FW@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Make partitions automatically inherit OIDs.

Previously, if the parent was specified as WITH OIDS, each child
also had to be explicitly specified as WITH OIDS.

Amit Langote, per a report from Simon Riggs. Some additional
work on the documentation changes by me.

Discussion: http://postgr.es/m/CANP8+jJBpWocfKrbJcaf3iBt9E3U=WPE_NC8YE6rye+YJ1sYnQ@mail.gmail.com

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/a3dc8e495b4967fe07086a700d115c89f4f0add0

Modified Files
--------------
doc/src/sgml/ddl.sgml | 8 -------
doc/src/sgml/ref/create_table.sgml | 34 +++++++++++++++---------------
src/backend/commands/tablecmds.c | 21 +++++++-----------
src/test/regress/expected/create_table.out | 18 +++++++++++-----
src/test/regress/sql/create_table.sql | 10 +++++----
5 files changed, 44 insertions(+), 47 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2017-02-19 18:04:36 pgsql: Suppress "unused variable" warnings with older versions of flex.
Previous Message Robert Haas 2017-02-19 10:29:34 pgsql: Add optimizer and executor support for parallel index-only scans