- 14 Sep, 2006 3 commits
-
-
Teodor Sigaev authored
Thanks to Christopher Kings-Lynne <chris.kingslynne@gmail.com> for initial version and Jeff Davis <pgsql@j-davis.com> for inspection
-
Michael Meskes authored
Cygwin systems seem to have a different error message when trying to connect to port 0. Let's try port 20 instead.
-
Michael Meskes authored
-
- 13 Sep, 2006 4 commits
-
-
Tom Lane authored
CONCURRENTLY. Greg Stark, some further tweaks by me.
-
Tom Lane authored
discussion with Guillaume Smet.
-
Tom Lane authored
table: avoid invoking LockBufferForCleanup without need, put out the same log message we would have before, minor code beautification.
-
Tatsuo Ishii authored
Fix bug with handling default scaling factor in the default scenarios
-
- 12 Sep, 2006 5 commits
-
-
Bruce Momjian authored
> * David is David Fetter <david@fetter.org>
-
Teodor Sigaev authored
-
Tom Lane authored
-
Peter Eisentraut authored
Dave Page
-
Michael Meskes authored
-
- 11 Sep, 2006 7 commits
-
-
Tom Lane authored
path.c does not in itself force linking of both exec.c and libintl. Should fix current ecpglib build failure on pickier platforms.
-
Tom Lane authored
-
Tom Lane authored
match the convention that foo's uninstall script is uninstall_foo.sql. Also, stop installing lo_test.sql, which really ought to be made into a regression test anyway (though it's unclear how to avoid a dependency on the current OID counter...)
-
Tom Lane authored
-
Tom Lane authored
source-code change.
-
Tom Lane authored
-
Tom Lane authored
-
- 10 Sep, 2006 11 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
Allow to_char() "D" format specifiers for interval/time. It doesn't work, and I doubt it is useful enough to fix ("D" = day of week).
-
Bruce Momjian authored
< * Research storing disk pages with no alignment/padding > * Consider ways of storing rows more compactly on disk > > o Store disk pages with no alignment/padding? > o Reorder physical storage order to reduce padding? > o Support a smaller header for short variable-length fields? > o Reduce the row header size?
-
Tom Lane authored
an earlier discussion. Centralize assumptions about what libpq depends on in one place in Makefile.global. I am unconvinced that this list is complete, but since ecpg seems to have gotten along with just these entries, we'll try it this way and see what happens.
-
Tom Lane authored
Per Chris Browne.
-
Tom Lane authored
Per gripe from Jack Orenstein.
-
Tom Lane authored
-
Tom Lane authored
we probably should make them work reliably for all arrays. Fix code to handle NULLs and multidimensional arrays, move it into arrayfuncs.c. GIN is still restricted to indexing arrays with no null elements, however.
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
agreed these symbols are less easily confused. I made new pg_operator entries (with new OIDs) for the old names, so as to provide backward compatibility while making it pretty easy to remove the old names in some future release cycle. This commit only touches the core datatypes, contrib will be fixed separately.
-
- 09 Sep, 2006 3 commits
-
-
Tom Lane authored
-
Tom Lane authored
remove the old isbn_issn module which is about to be obsoleted by EAN13. contrib/isn is by Germán Méndez Bravo. Our thanks to Garrett A. Wollman for having written the original isbn_issn module.
-
Tom Lane authored
than before. Albe Laurenz (but editorialized heavily by me, so if it doesn't work it's my fault).
-
- 08 Sep, 2006 6 commits
-
-
Tom Lane authored
I had thought this code could be left alone, but I was wrong: as-is it's failing to recognize when to use ALL for table privileges in 8.2.
-
Tom Lane authored
to a relation on the nullable side of an outer join. I had removed this during the outer join planning rewrite a few months ago ... I think I intended to put it somewhere else, but forgot ...
-
Tom Lane authored
than being equivalent to setting log_min_duration_statement to zero, this option now forces logging of all query durations, but doesn't force logging of query text. Also, add duration logging coverage for fastpath function calls.
-
Michael Meskes authored
-
Michael Meskes authored
-
Michael Meskes authored
-
- 07 Sep, 2006 1 commit
-
-
Tom Lane authored
proposal. Parameter logging works even for binary-format parameters, and logging overhead is avoided when disabled. log_statement = all output for the src/test/examples/testlibpq3.c example now looks like LOG: statement: execute <unnamed>: SELECT * FROM test1 WHERE t = $1 DETAIL: parameters: $1 = 'joe''s place' LOG: statement: execute <unnamed>: SELECT * FROM test1 WHERE i = $1::int4 DETAIL: parameters: $1 = '2' and log_min_duration_statement = 0 results in LOG: duration: 2.431 ms parse <unnamed>: SELECT * FROM test1 WHERE t = $1 LOG: duration: 2.335 ms bind <unnamed> to <unnamed>: SELECT * FROM test1 WHERE t = $1 DETAIL: parameters: $1 = 'joe''s place' LOG: duration: 0.394 ms execute <unnamed>: SELECT * FROM test1 WHERE t = $1 DETAIL: parameters: $1 = 'joe''s place' LOG: duration: 1.251 ms parse <unnamed>: SELECT * FROM test1 WHERE i = $1::int4 LOG: duration: 0.566 ms bind <unnamed> to <unnamed>: SELECT * FROM test1 WHERE i = $1::int4 DETAIL: parameters: $1 = '2' LOG: duration: 0.173 ms execute <unnamed>: SELECT * FROM test1 WHERE i = $1::int4 DETAIL: parameters: $1 = '2' (This example demonstrates the folly of ignoring parse/bind steps for duration logging purposes, BTW.) Along the way, create a less ad-hoc mechanism for determining which commands are logged by log_statement = mod and log_statement = ddl. The former coding was actually missing quite a few things that look like ddl to me, and it did not handle EXECUTE or extended query protocol correctly at all. This commit does not do anything about the question of whether log_duration should be removed or made less redundant with log_min_duration_statement.
-