- Nov 07, 2005
-
-
Tom Lane authored
-
- Nov 05, 2005
-
-
Peter Eisentraut authored
-
- Nov 03, 2005
-
-
Neil Conway authored
elsewhere.
-
- Nov 01, 2005
-
-
Tom Lane authored
-
- Oct 31, 2005
-
-
Bruce Momjian authored
referential integrity relationships.
-
- Oct 30, 2005
-
-
Bruce Momjian authored
Andreas Seltenreich
-
- Oct 28, 2005
-
-
Bruce Momjian authored
-
- Oct 20, 2005
-
-
Tom Lane authored
held by means of role membership, rather than directly. Per discussion and bug fix of a couple weeks ago.
-
- Oct 15, 2005
-
-
Neil Conway authored
rather than British. Patch from Michael Fuhr.
-
Neil Conway authored
documentation. Mostly add some <xref>s, fix a few typos, and document that zlib is required in the installation docs.
-
- Oct 14, 2005
- Oct 13, 2005
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
-
- Oct 11, 2005
-
-
Tom Lane authored
emit when given the --clean option, in favor of individual DROP ROLE commands. The old technique could not possibly work in 8.1, and was never a very good idea anyway IMHO. The DROP ROLE approach has the defect that the DROPs will fail for roles that own objects or have privileges, but perhaps we can improve that later.
-
- Oct 04, 2005
-
-
Peter Eisentraut authored
renamed to --log-file for clarity.
-
- Sep 30, 2005
-
-
Peter Eisentraut authored
SQL option spelling.
-
- Sep 27, 2005
-
-
Tom Lane authored
relocated after installation. We can't trust the installation paths inserted into Makefile.global by configure, so instead we must get the paths from pg_config. This requires extending pg_config to support all the separately-configurable path names, but that was on TODO anyway.
-
- Sep 23, 2005
-
-
Bruce Momjian authored
maintenance.sgml. Robert Treat [ Also fix create domain markup.]
-
Bruce Momjian authored
David Fetter
-
- Sep 13, 2005
-
-
Neil Conway authored
-
- Sep 12, 2005
-
-
Tom Lane authored
appears in the REINDEX ref page.
-
- Sep 08, 2005
-
-
Tom Lane authored
for procedural languages. This replaces the hard-wired table I had originally proposed as a stopgap solution. For the moment, the initial contents only include languages shipped with the core distribution.
-
- Sep 06, 2005
-
-
Tom Lane authored
as per my recent proposal. For now the template data is hard-wired in proclang.c --- this should be replaced later by a new shared system catalog, but we don't want to force initdb during 8.1 beta. This change lets us cleanly load existing dump files even if they contain outright wrong information about a PL's support functions, such as a wrong path to the shared library or a missing validator function. Also, we can revert the recent kluges to make pg_dump dump PL support functions that are stored in pg_catalog. While at it, I removed the code in pg_regress that replaced $libdir with a hardcoded path for temporary installations. This is no longer needed given our support for relocatable installations.
-
- Sep 05, 2005
-
-
Andrew Dunstan authored
Suggestion by Darcy Buskermolen, reworded by me.
-
- Aug 30, 2005
-
-
Tom Lane authored
per Bruce's suggestion.
-
- Aug 24, 2005
-
-
Tom Lane authored
-
- Aug 22, 2005
-
-
Bruce Momjian authored
-
Tom Lane authored
erroring out as it has done for the last couple weeks. Document that this form is now ignored because indexes can't usefully have different owners from their parent tables. Fix pg_dump to not generate ALTER OWNER commands for indexes.
-
- Aug 15, 2005
- Aug 14, 2005
- Aug 13, 2005
-
-
Bruce Momjian authored
Alvaro.
-
- Aug 12, 2005
-
-
Tom Lane authored
only composite types as we did in 8.0. Per discussion with Martijn van Oosterhout.
-
- Aug 10, 2005
-
-
Tom Lane authored
CPPFLAGS, CFLAGS, CFLAGS_SL, LDFLAGS, LDFLAGS_SL, and LIBS. Change it so that invoking pg_config with no arguments reports all available information, rather than just giving an error message. Per discussion.
-
- Aug 04, 2005
-
-
Tom Lane authored
This was not especially critical before, but it is now that we track ownership dependencies --- the dependency for the rowtype *must* shift to the new owner. Spotted by Bernd Helmle. Also fix a problem introduced by recent change to allow non-superusers to do ALTER OWNER in some cases: if the table had a toast table, ALTER OWNER failed *even for superusers*, because the test being applied would conclude that the new would-be owner had no create rights on pg_toast. A side-effect of the fix is to disallow changing the ownership of indexes or toast tables separately from their parent table, which seems a good idea on the whole.
-
- Aug 01, 2005
-
-
Tom Lane authored
Original patch by Hans-Juergen Schoenig, revisions by Karel Zak and Tom Lane.
-
Bruce Momjian authored
-