Re: [HACKERS] PostgreSql - access modified rows in prepare transaction command

2013-02-20 Thread Heikki Linnakangas
On 20.02.2013 12:48, pierpaolo.cincilla wrote: I have the problem to access modified data (updates and inserts) in a prepare transaction statement before a commit/rollback. For example consider the following block: BEGIN; do some update; do some insert; PREPARE TRANSACTION 'transaction1'; After

[HACKERS] PostgreSql - access modified rows in prepare transaction command

2013-02-20 Thread pierpaolo.cincilla
Hello, I have the problem to access modified data (updates and inserts) in a prepare transaction statement before a commit/rollback. For example consider the following block: BEGIN; do some update; do some insert; PREPARE TRANSACTION 'transaction1'; After executing the 'prepare' comma