vote up 1 vote down star

My database background is with Oracle, so I was surprised to discover that Postgres includes schema changes in transactions - if you begin one, create a table and then rollback, the table goes away. It works for adding and removing columns as well. Obviously this is very nice.

We're about to make some changes to the way we deploy schema deltas that rely on this feature. Before we do, I'd like to find out how far the transactional guarantee extends, but I can't find any information on it in the documentation. I assume I'm just using the wrong search terms - my searches just go to big lists of commands which include the words 'transaction', 'create' and 'table'.

Can anyone give me some pointers to docs or discussions about transactional schema changes in Postgres? (We're using 8.2.13, although we'll be upgrading in the not too distant future.) Or just some details about statement that won't be included in the transaction?

flag
Yes - that feature is extremely useful for writing upgrade scripts. – Stephen Denne Jul 10 at 10:49
Gah - those are both good answers. In the end the deciding factor was that the grep is hopefully a more exhaustive list. (Although it doesn't mention REINDEX.) Thanks. – wilberforce Jul 10 at 12:21
depesz has made massive contributions to the postgresql community, such as through his blog. If you ask me - he deserves a high reputation score! – Stephen Denne Jul 10 at 12:49

2 Answers

vote up 2 vote down check

According to quick grep on docs, these commands cannot be executed in transactions:

  • cluster
  • commit prepared
  • create database
  • create tablespace
  • discard
  • drop database
  • drop tablespace
  • rollback prepared
  • vacuum
link|flag
Care to share your grep command? – Stephen Denne Jul 10 at 10:50
sure: grep 'cannot be executed inside a transaction' sql-*html – depesz Jul 10 at 11:53
Thanks. The reindex docs have more whitespace between exactly those words. – Stephen Denne Jul 10 at 12:23
1  
CLUSTER can run inside a transaction block as long as you specify which tables to CLUSTER. – Magnus Hagander Jul 19 at 20:55
vote up 4 vote down
  • nextval and setval operations on sequences are never rolled back.
  • REINDEX DATABASE
  • REINDEX SYSTEM

There's an article about transactional DDL on the PostgreSQL Wiki

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.