summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-11-10make sure we are tag'd for RC2PostgreSQL Daemon
2003-11-09I have attached a more comprehensive MSWIN FAQ patch. Basically, theBruce Momjian
instructions were way out of date and incorrect. Installing Postgres from Cygwin is easier these days than the FAQ would imply. This patch already includes Andrew's previous patch. Christopher Kings-Lynne
2003-11-09Fix typo on autovacuum readme.Bruce Momjian
2003-11-08Allow tab completion for ALTER TABLE dbname <tab><tab> to show newBruce Momjian
RENAME TO option.
2003-11-08Correct misspellings of REFERENCES.Tom Lane
2003-11-08Restore compatibility with Tcl 8.0.* --- from ljb.Tom Lane
2003-11-08Don't need hack copy of system() anymore in OS X 10.3.Tom Lane
2003-11-08Fix parsing of create index callMichael Meskes
2003-11-08Fix process-status handling for OS X 10.3.Tom Lane
2003-11-08Adjust file so psql help picks it up properly.Peter Eisentraut
patch by Kris Jurka
2003-11-07Cause stats processes to detach from shared memory when started, so thatTom Lane
they do not prevent the postmaster from deleting the shmem segment during a post-backend-crash restart cycle. Per recent discussion.
2003-11-07zero_damaged_pages must absolutely NOT be marked GUC_DISALLOW_IN_FILE,Tom Lane
else it cannot be used to handle failures detected during WAL replay. Fortunately this flag isn't actually enforced yet, but get it right.
2003-11-06Minor copy-editing.Tom Lane
2003-11-06Make the detection of nsgmls more robust for funny shells.Peter Eisentraut
2003-11-05Fix for this problem:Tom Lane
regression=# select 1 from tenk1 ta cross join tenk1 tb for update; ERROR: no relation entry for relid 3 7.3 said "SELECT FOR UPDATE cannot be applied to a join", which was better but still wrong, considering that 7.2 took the query just fine. Fix by making transformForUpdate() ignore JOIN and other special RTE types, rather than trying to mark them FOR UPDATE. The actual error message now only appears if you explicitly name the join in FOR UPDATE.
2003-11-05Add -O to really trigger compiler bug.Peter Eisentraut
2003-11-05Check off UnixWare.Peter Eisentraut
2003-11-05Add detection of compiler bug.Peter Eisentraut
2003-11-05Minor copy-editing.Tom Lane
2003-11-04Some copy-editing for 7.4 release notes.Tom Lane
2003-11-04Give the full syntax rules for subscripting and field selection in theTom Lane
proper place, namely the syntax discussion of value expressions.
2003-11-04Update keywords table.Peter Eisentraut
2003-11-04Remove unused graphics files.Peter Eisentraut
2003-11-04Add report about HP-UX 11.00.Peter Eisentraut
2003-11-04Random copy-editing.Peter Eisentraut
2003-11-04Improve wording of spinlocks-missing compilation error message.Peter Eisentraut
2003-11-04Make sure bug fix makes it into 7.4 as well. Thanks Peter.Michael Meskes
2003-11-04fix typo. (role_columns_grants -> role_column_grants)Tatsuo Ishii
2003-11-04Copy-editing.Tom Lane
2003-11-03tag it Release Candidate 1, as previously discussedREL7_4_RC1PostgreSQL Daemon
2003-11-02Adjust data types in some of the UNION tests to avoid potentiallyTom Lane
platform-dependent results, as per example from Larry Rosenman.
2003-11-02Provide a way to run the parallel regression tests with a user-specifiedTom Lane
limit on the number of simultaneous connections. Andrew Dunstan, with review by Tom Lane.
2003-11-02Fix language.Peter Eisentraut
2003-11-02Make spelling consistent.Peter Eisentraut
2003-11-02pg_dumpall doesn't use psql anymore.Peter Eisentraut
2003-11-02Put --describe-config in the right place.Peter Eisentraut
2003-11-02Fix name in supported platforms list.Peter Eisentraut
2003-11-02Complete options help and put it in less random order.Peter Eisentraut
2003-11-02Call domains "domains", not "derived types".Peter Eisentraut
2003-11-02Update ports list.Peter Eisentraut
2003-11-01Unset CFLAGS before reading template. This should be more robust.Peter Eisentraut
When --enable-debug is used, then the default CFLAGS for non-GCC is just -g without -O. Backpatch enhancement of Autoconf inline test that detects problems with the HP C compiler.
2003-11-01Fix CFLAGS logic.Peter Eisentraut
2003-11-01More whitespace fixes. Do people write the expected files by hand?Peter Eisentraut
2003-11-01Fix hidden whitespace differences between expected and result files.Peter Eisentraut
2003-11-01Spell checking, consistent terminology.Peter Eisentraut
2003-10-31Update future-tense comments in README to present tense. Noted byTom Lane
Neil Conway.
2003-10-31Rewrite GiST documentation into something actually useful.Tom Lane
Christopher Kings-Lynne
2003-10-31Fix broken markup.Tom Lane
2003-10-31Translation updatePeter Eisentraut
2003-10-31When a superuser does GRANT or REVOKE on an object he doesn't own,Tom Lane
process the command as though it were issued by the object owner. This prevents creating weird scenarios in which the same privileges may appear to flow from different sources, and ensures that a superuser can in fact revoke all privileges if he wants to. In particular this means that the regression tests work when run by a superuser other than the original bootstrap userid. Per report from Larry Rosenman.