- 04 Nov, 2005 5 commits
-
-
Tom Lane authored
so as to avoid performance issues and possible ultimate crash on long psql scripts. Per Merlin Moncure.
-
Bruce Momjian authored
to fail to successfully build the release candidates. However, a patch has emerged (thanks, Seneca!) that does allow it to work, and which I'd expect to be portable (better still!). We are still actively pursuing why it breaks, but supposing that still remains outstanding, at least the following would allow AIX users to better survive a build... Chris Browne
-
Tom Lane authored
create circularity of role memberships. This is a minimum-impact fix for the problem reported by Florian Pflug. I thought about removing the superuser_arg test from is_member_of_role() altogether, as it seems redundant for many of the callers --- but not all, and it's way too late in the 8.1 cycle to be making large changes. Perhaps reconsider this later.
-
Tom Lane authored
-
Tom Lane authored
necessary, and be careful to refer to the right version where it is useful to do so. This partially reverts an ill-considered search and replace from a few months ago.
-
- 03 Nov, 2005 10 commits
-
-
Tom Lane authored
-
Alvaro Herrera authored
-
Teodor Sigaev authored
-
Tom Lane authored
to ensure that SubqueryScan elimination doesn't change the behavior of reporting of original column sources.
-
Tom Lane authored
from a finished plan tree. We have to copy the output column names (resname fields) from the SubqueryScan down to its child plan node; else, if this is the topmost level of the plan, the wrong column names will be delivered to the client. Per bug #2017 reported by Jolly Chen.
-
Alvaro Herrera authored
those names. (Debug and None were pretty bad names anyway.) I hope I catched all uses of the names in comments too.
-
Alvaro Herrera authored
-
Tom Lane authored
of copy-editing from myself.
-
Neil Conway authored
elsewhere.
-
Tom Lane authored
very narrow window in which SimpleLruReadPage or SimpleLruWritePage could think that I/O was needed when it wasn't (and indeed the buffer had already been assigned to another page). This would result in an Assert failure if Asserts were enabled, and probably in silent data corruption if not. Reported independently by Jim Nasby and Robert Creager. I intend a more extensive fix when 8.2 development starts, but this is a reasonably low-impact patch for the existing branches.
-
- 02 Nov, 2005 1 commit
-
-
Bruce Momjian authored
-
- 01 Nov, 2005 3 commits
-
-
Neil Conway authored
From Simon Riggs; cleanup and editorialization by Neil Conway.
-
Tom Lane authored
-
Andrew Dunstan authored
Provide a --no-locale option for pg_regress and a corresponding NOLOCALE=1 setting for the regression makefile, allowing Windows users to force locale settings since Windows does not get its locale from the environment. Per Petr Jelinek.
-
- 31 Oct, 2005 3 commits
-
-
Tom Lane authored
-
Bruce Momjian authored
referential integrity relationships.
-
Teodor Sigaev authored
-
- 30 Oct, 2005 3 commits
-
-
Tom Lane authored
-
PostgreSQL Daemon authored
tag it for rc1
-
Bruce Momjian authored
Andreas Seltenreich
-
- 29 Oct, 2005 4 commits
-
-
Tom Lane authored
to fail with large test scripts.
-
Tom Lane authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
- 28 Oct, 2005 7 commits
-
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
reserving SLRU space for a new MultiXact. The original coding would have treated out-of-disk-space as a PANIC condition, which is unnecessary.
-
Tom Lane authored
of postgres.imp file into BE_DLLLIBS macro. This makes the AIX build work more like the Windows and Darwin builds, which have similar requirements to mention a backend library when linking shared libraries that will be dynamically loaded into the backend.
-
Tom Lane authored
multixact's starting offset before the offset has been stored into the SLRU file. A simple fix would be to hold the MultiXactGenLock until the offset has been stored, but that looks like a big concurrency hit. Instead rely on knowledge that unset offsets will be zero, and loop when we see a zero. This requires a little extra hacking to ensure that zero is never a valid value for the offset. Problem reported by Matteo Beccati, fix ideas from Martijn van Oosterhout, Alvaro Herrera, and Tom Lane.
-
Teodor Sigaev authored
2 Allow tsquery_in to input void tsquery: resolve dump/restore problem with tsquery
-
Bruce Momjian authored
-
- 27 Oct, 2005 4 commits
-
-
Tom Lane authored
for postgres: on line 86, and line 43 shouldn't be used. Noted while looking at kookaburra buildfarm results.
-
Tom Lane authored
advance its usage_count. This includes writes of dirty buffers triggered by bgwriter, checkpoint, or FlushRelationBuffers, as well as various corner cases that really ought not count as accesses to the page. Should make for some marginal improvement in the quality of our decisions about when to recycle buffers. Per suggestion from ITAGAKI Takahiro.
-
Bruce Momjian authored
< o Allow ALTER TABLE RENAME CONSTRAINT > o Add ALTER TABLE RENAME CONSTRAINT, update index name also
-
Bruce Momjian authored
> o Have ALTER INDEX update the name of a constraint using that index > o Allow ALTER TABLE RENAME CONSTRAINT
-