- 17 Aug, 2004 8 commits
-
-
Bruce Momjian authored
< * -Allow savepoints / nested transactions [transactions] (Alvaro) > * -Allow savepoints / nested transactions (Alvaro) 348a349,353 > * Add an option to automatically use savepoints for each statement in a > multi-statement transaction. > > When enabled, this would allow errors in multi-statement transactions > to be automatically ignored.
-
Bruce Momjian authored
-
Bruce Momjian authored
Always create thread-specific variable.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
global variables are problematic on this platform. Simplest solution seems to be to initialize pthread key variable to 0. Also, rename this variable and check_sigpipe_handler to something involving "pq" to avoid gratuitous pollution of application namespace.
-
Bruce Momjian authored
-
Bruce Momjian authored
rename/unlink defined later. Problem exists on MS VC. Andrew Francis
-
- 16 Aug, 2004 9 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
-
Bruce Momjian authored
> o Add ALTER INDEX syntax to work like ALTER TABLE indexname
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Set proper permissions on non-system schemas during db creation > > Currently all schemas are owned by the super-user because they are > copied from the template1 database. >
-
Bruce Momjian authored
-
Tom Lane authored
proposals by Oliver Jowett. Update documentation.
-
Bruce Momjian authored
-
- 15 Aug, 2004 6 commits
-
-
Tom Lane authored
of XLogInsert had the same sort of checkpoint interlock problem as RecordTransactionCommit, and indeed I found some. Btree index build and ALTER TABLE SET TABLESPACE write data outside the friendly confines of the buffer manager, and therefore they have to take their own responsibility for checkpoint interlock. The easiest solution seems to be to force smgrimmedsync at the end of the index build or table copy, even when the operation is being WAL-logged. This is sufficient since the new index or table will be of interest to no one if we don't get as far as committing the current transaction.
-
Tom Lane authored
therefore starting with GetCurrentTransactionId is wrong. Fixes miscomputation of RecentGlobalXmin leading to bizarre behavior reported by Gavin Sherry.
-
Tom Lane authored
Oliver Jowett.
-
Bruce Momjian authored
-
Tom Lane authored
-
Tom Lane authored
-
- 14 Aug, 2004 5 commits
-
-
Tom Lane authored
-
Tom Lane authored
mode isn't really serializable. I had thought this was covered already in our docs, but I sure can't find it.
-
Tom Lane authored
-
Peter Eisentraut authored
-
Bruce Momjian authored
> > * Allow buffered WAL writes and fsync > > Instead of guaranteeing recovery of all committed transactions, this > would provide improved performance by delaying WAL writes and fsync > so an abrupt operating system restart might lose a few seconds of > committed transactions but still be consistent. We could perhaps > remove the 'fsync' parameter (which results in an an inconsistent > database) in favor of this capability.
-
- 13 Aug, 2004 12 commits
-
-
Tom Lane authored
Andrew Dunstan, some further hacking by Tom Lane.
-
Tom Lane authored
logic a little bit.
-
Tom Lane authored
in plpgsql, particularly trying to begin/end/rollback a transaction.
-
Tom Lane authored
back branches later.
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Bruce Momjian authored
-
Tom Lane authored
-
Tom Lane authored
patches.
-
Tom Lane authored
don't hold an open file reference to the original table at the end. This is a good thing in any case, particularly so on Windows which cannot drop the table file otherwise.
-
Bruce Momjian authored
-