Re: Patch for ALTER DATABASE WITH TABLESPACE - Mailing list pgsql-hackers

From Bernd Helmle
Subject Re: Patch for ALTER DATABASE WITH TABLESPACE
Date
Msg-id C0F6602797884925406AB88F@imhotep.credativ.de
Whole thread Raw
In response to Patch for ALTER DATABASE WITH TABLESPACE  (Guillaume Lelarge <guillaume@lelarge.info>)
Responses Re: Patch for ALTER DATABASE WITH TABLESPACE  (Guillaume Lelarge <guillaume@lelarge.info>)
List pgsql-hackers
--On Samstag, Oktober 25, 2008 23:50:47 +0200 Guillaume Lelarge
<guillaume@lelarge.info> wrote:

> Hi,
>
> Here is my patch to add the ALTER DATABASE WITH TABLESPACE statement. It
> is part of the TODO list. It intends to allow the move of all relations
> of a database in its new default tablespace.
>
> Comments welcome.

I had a first look on this and in my opinion the patch looks reasonable. I
moved the usage of heap_modifytuple() to the new heap_modify_tuple() API
(see attached new diff) and did other minor cleanups.

However, i'm not satisfied with the syntax, which is currently ALTER
DATABASE name TABLESPACE foo. We use all over the place SET TABLESPACE
(e.g. for tables and indexes) and SET SCHEMA for namespaces even, so this
looks inconsistent. However, hacking this requires a little bit more
parser-foo, a quick hack shows reduce conflicts due to SetResetClause rule.
So what do we want in this case?

I did some minor additions in the docs as well.

--
  Thanks

                    Bernd
Attachment

pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: pre-MED
Next
From: Ron Mayer
Date:
Subject: Re: Patch for SQL-Standard Interval output and decoupling DateStyle from IntervalStyle