- 28 Oct, 2005 5 commits
-
-
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 9 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+.
-
Tom Lane authored
English, and fix the incorrect example.
-
Tom Lane authored
some small stylistic improvements in these functions. Also fix several places where TMODULO() was being used with wrong-sized quotient argument, creating a risk of overflow --- interval2tm was actually capable of going into an infinite loop because of this.
-
Tom Lane authored
-
Tom Lane authored
to the main thread. This allows removal of WaitForSingleObjectEx() calls from the main thread, thereby allowing us to re-enable Qingqing Zhou's CHECK_FOR_INTERRUPTS performance improvement. Qingqing, Magnus, et al.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
Sergey E. Koposov
-
- 24 Oct, 2005 6 commits
-
-
Bruce Momjian authored
maintenance level 5300-03; the following patch adds documentation to FAQ_AIX. Chris Browne
-
Bruce Momjian authored
> * Allow user-defined functions retuning a domain value to enforce domain > constraints
-
Bruce Momjian authored
-
Andrew Dunstan authored
Fix incorrect wording about function failure time on unsafe ops - these are now caught by the validator. And a small visit from the perl style police: check the return value from open().
-
Bruce Momjian authored
PQregisterThreadLock(). I also remove the crypt() mention in the libpq threading section and added a single sentence in the client-auth manual page under crypt(). Crypt authentication is so old now that a separate paragraph about it seemed unwise. I also added a comment about our use of locking around pqGetpwuid().
-
Tom Lane authored
one CHECK_FOR_INTERRUPTS() call, so that you can control-C out of the loop. Reported by Merlin Moncure.
-
- 23 Oct, 2005 2 commits
- 22 Oct, 2005 6 commits
-
-
PostgreSQL Daemon authored
update configure and bugtemplate for beta 4 ...
-
Tom Lane authored
while tar is copying it. This behavior is unhelpful when taking a base backup. Per gripe from Pallav Kalva back in April.
-
Tom Lane authored
full_page_writes, etc.
-
Tom Lane authored
-
Tom Lane authored
type time with time zone, ie, +/- 13:59 not +/- 12:00. Also some minor wording improvements.
-
Tom Lane authored
WaitForSingleObjectEx is always called by CHECK_FOR_INTERRUPTS. This should be reinstated but the setitimer() emulation will have to be redesigned first.
-