- 14 Feb, 2007 10 commits
-
-
Peter Eisentraut authored
-
Bruce Momjian authored
Converting from char using 'D' doesn't make lots of sense, of course. Report from Brendan Jurd.
-
Bruce Momjian authored
can be used by src/tools/fsync/test_fsync.c.
-
Tom Lane authored
copied-and-pasted text in a more useful location.
-
Bruce Momjian authored
> * Clean up casting in /contrib/isn > > http://archives.postgresql.org/pgsql-hackers/2006-11/msg00245.php >
-
Bruce Momjian authored
> * Improve logging of prepared statements recovered during startup > > http://archives.postgresql.org/pgsql-hackers/2006-11/msg00092.php >
-
Neil Conway authored
-
Bruce Momjian authored
* Allow SQL-language functions to return results from RETURNING queries > > http://archives.postgresql.org/pgsql-hackers/2006-10/msg00665.php >
-
Tom Lane authored
equality checks it applies, instead of a random dependence on whatever operators might be named "=". The equality operators will now be selected from the opfamily of the unique index that the FK constraint depends on to enforce uniqueness of the referenced columns; therefore they are certain to be consistent with that index's notion of equality. Among other things this should fix the problem noted awhile back that pg_dump may fail for foreign-key constraints on user-defined types when the required operators aren't in the search path. This also means that the former warning condition about "foreign key constraint will require costly sequential scans" is gone: if the comparison condition isn't indexable then we'll reject the constraint entirely. All per past discussions. Along the way, make the RI triggers look into pg_constraint for their information, instead of using pg_trigger.tgargs; and get rid of the always error-prone fixed-size string buffers in ri_triggers.c in favor of building up the RI queries in StringInfo buffers. initdb forced due to columns added to pg_constraint and pg_trigger.
-
-
- 13 Feb, 2007 16 commits
-
-
Bruce Momjian authored
* Update Bonjour to work with newer cross-platform SDK > http://archives.postgresql.org/pgsql-patches/2006-10/msg00048.php
-
Bruce Momjian authored
> * Improve failure message when DROP DATABASE is used on a database that > has prepared transactions
-
Tom Lane authored
it was executed in. Someday it might be nice to allow cross-DB commits, but work would be needed in NOTIFY and perhaps other places. Per Heikki.
-
Tom Lane authored
socket is still read-ready, the code was a tight loop, wasting lots of CPU. We can't do anything to clear the failure, other than wait, but we should give other processes more chance to finish and release FDs; so insert a small sleep. Also, avoid bogus "close(-1)" in this case. Per report from Jim Nasby.
-
Bruce Momjian authored
* Update Bonjour to work with newer cross-platform SDK > > http://archives.postgresql.org/pgsql-hackers/2006-09/msg02238.php >
-
Bruce Momjian authored
pg_dumpall.
-
Bruce Momjian authored
'length', which can be characters.
-
Bruce Momjian authored
pg_dumpall.
-
Bruce Momjian authored
> * Update our code to handle 64-bit timezone files to match the zic > source code, which now uses them
-
Magnus Hagander authored
after variable declarations.
-
Magnus Hagander authored
clean script to properly clean up the result of it.
-
Magnus Hagander authored
-
Magnus Hagander authored
-
Tom Lane authored
that overlap an outer join's min_righthand but aren't fully contained in it, to support joining within the RHS after having performed an outer join that can commute with this one. Aside from the direct fix in make_join_rel(), fix has_join_restriction() and GEQO's desirable_join() to consider this possibility. Per report from Ian Harding.
-
Bruce Momjian authored
openFlagsToCreateFileFlags() in certain cases.
-
Bruce Momjian authored
-
- 12 Feb, 2007 2 commits
-
-
Tom Lane authored
-
Teodor Sigaev authored
Per report from Jon Rosebaugh <jon@inklesspen.com>
-
- 11 Feb, 2007 4 commits
-
-
Peter Eisentraut authored
to XML names, which will be required for supporting XML export.
-
Tom Lane authored
-
Michael Meskes authored
-
Magnus Hagander authored
running as a service on Win32. Per report from Harald Armin Massa.
-
- 10 Feb, 2007 6 commits
-
-
Tom Lane authored
-
Magnus Hagander authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Tom Lane authored
-
Tom Lane authored
order platform-specific. Add an ORDER BY clause to stop buildfarm failures.
-
- 09 Feb, 2007 2 commits
-
-
Neil Conway authored
the RHS of the assignment expands to a reference to the LHS.
-
Tom Lane authored
currently have any better strategy for this query than re-running the sub-select over and over; it seems unlikely that doing so 10000 times is a more useful test than doing it a few dozen times.
-