pgsql: Fix a couple of unlogged tables goofs.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix a couple of unlogged tables goofs.
Date: 2011-02-22 19:49:19
Message-ID: E1PryEZ-0005Vw-S5@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix a couple of unlogged tables goofs.

"SELECT ... INTO UNLOGGED tabname" works, but wasn't documented; CREATE
UNLOGGED SEQUENCE and CREATE UNLOGGED VIEW failed an assertion, instead
of throwing a sensible error.

Latter issue reported by Itagaki Takahiro; patch review by Tom Lane.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/3e6b305d9e2a4616bf69e31b0b21ebbb844ba50e

Modified Files
--------------
doc/src/sgml/ref/select_into.sgml | 12 +++++++++++-
src/backend/commands/sequence.c | 6 ++++++
src/backend/commands/view.c | 6 ++++++
3 files changed, 23 insertions(+), 1 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2011-02-22 21:45:42 pgsql: Add PL/Python functions for quoting strings
Previous Message Robert Haas 2011-02-22 19:29:26 Re: Re: [COMMITTERS] pgsql: Make a hard state change from catchup to streaming mode.