- 25 Oct, 2005 8 commits
-
-
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 8 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.
-
Alvaro Herrera authored
-
Andrew Dunstan authored
minor code cleanup - replace useless struct timezone argument to gettimeofday with NULL in a few places, making it consistent with usage elsewhere.
-
- 21 Oct, 2005 8 commits
-
-
Tom Lane authored
a kernel call unless there's some evidence of a pending signal. This should bring its performance on Windows into line with the Unix version. Problem diagnosis and patch by Qingqing Zhou. Minor stylistic tweaks by moi ... if it's broken, it's my fault.
-
Tom Lane authored
the code actually does, and needed copy-editing anyway. Also take the opportunity to expand the section on routine reindexing.
-
Tom Lane authored
properly advancing the CommandCounter between multiple sub-queries generated by rules, we forgot to update the snapshot being used, so that the successive sub-queries didn't actually see each others' results. This is still not *exactly* like the semantics of normal execution of the same queries, in that we don't take new transaction snapshots and hence don't see changes from concurrently committed commands, but I think that's OK and probably even preferable for EXPLAIN ANALYZE.
-
Tom Lane authored
of the form nextval('foo'::varchar) doesn't break. Per gripe from Jean-Pierre Pelletier. Initdb forced :-(
-
Tom Lane authored
-
Tom Lane authored
-
Neil Conway authored
an example function.
-
Tom Lane authored
documenting GiST crash recovery procedures, as requested some time ago by Teodor. (The GiST chapter doesn't seem quite the right place for the latter, but I'm not sure what else to do with it.)
-
- 20 Oct, 2005 7 commits
-
-
Tom Lane authored
a parameter in binary format. Also, add a TIP explaining how to use casts in the query text to avoid needing to specify parameter types by OID. Also fix bogus spacing --- apparently somebody expanded the tabs in the example programs to 8 spaces instead of 4 when transposing them into SGML.
-
Neil Conway authored
-
Tom Lane authored
since it can take a fair amount of time and this can confuse boot scripts that expect postmaster.pid to appear quickly. Move initialization of SSL library and preloaded libraries to after that point, too, just for luck. Per reports from Tony Caduto and others.
-
Tom Lane authored
held by means of role membership, rather than directly. Per discussion and bug fix of a couple weeks ago.
-
Tom Lane authored
Per gripe from Chris Matheson.
-
Tom Lane authored
module. Don't rely on backend palloc semantics; in fact, best to not use palloc at all, rather than #define'ing it to malloc, because that just encourages errors of omission. Bug spotted by Volkan YAZICI, but I went further than he did to fix it.
-
Tom Lane authored
of the text of the constraint condition. Per Chris K-L, though I didn't use his patch exactly.
-
- 19 Oct, 2005 1 commit
-
-
Tom Lane authored
generated from subquery outputs: use the type info stored in the Var itself. To avoid making ExecEvalVar and slot_getattr more complex and slower, I split out the whole-row case into a separate ExecEval routine.
-