- 03 Nov, 2005 5 commits
-
-
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 9 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
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
commands. Per complaint that \df+ is clearer in expanded mode.
-
Bruce Momjian authored
interval_justify_hours in timestamp subtraction. TODO already has text description.
-
Bruce Momjian authored
< o Add a GUC variable to allow output of interval values in ISO8601 < format 212a211,223 > o Add a GUC variable to allow output of interval values in ISO8601 > format > o Improve timestamptz subtraction to be DST-aware > > Currently, subtracting one date from another that crosses a > daylight savings time adjustment can return '1 day 1 hour', but > adding that back to the first date returns a time one hour in > the future. This is caused by the adjustment of '25 hours' to > '1 day 1 hour', and '1 day' is the same time the next day, even > if daylight savings adjustments are involved. > > o Fix interval display to support values exceeding 2^31 hours > o Add overflow checking to timestamp and interval arithmetic
-
- 26 Oct, 2005 3 commits
-
-
Tom Lane authored
Jeff Frost, it may be necessary to ignore specific exit codes.
-
Tom Lane authored
inFromCl true, meaning that they will list out as explicit RTEs if they are in a view or rule. Update comments about inFromCl to reflect the way it's now actually used. Per recent discussion.
-
Bruce Momjian authored
Simon Riggs
-
- 25 Oct, 2005 2 commits
-
-
Tom Lane authored
for an outer join; symptom is bogus error "RIGHT JOIN is only supported with merge-joinable join conditions". Problem was that select_mergejoin_clauses did its tests in the wrong order. We need to force left join not right join for a merge join when there are non-mergeable join clauses; but the test for this only accounted for mergejoinability of the clause operator, and not whether the left and right Vars were of the proper relations. Per report from Jean-Pierre Pelletier.
-
Bruce Momjian authored
> > o Add auto-expanded mode so expanded output is used if the row > length is wider than the screen width. > > Consider using auto-expanded mode for backslash commands like \df+.
-