Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-11-10 | make sure we are tag'd for RC2 | PostgreSQL Daemon | |
2003-11-09 | I have attached a more comprehensive MSWIN FAQ patch. Basically, the | Bruce 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-09 | Fix typo on autovacuum readme. | Bruce Momjian | |
2003-11-08 | Allow tab completion for ALTER TABLE dbname <tab><tab> to show new | Bruce Momjian | |
RENAME TO option. | |||
2003-11-08 | Correct misspellings of REFERENCES. | Tom Lane | |
2003-11-08 | Restore compatibility with Tcl 8.0.* --- from ljb. | Tom Lane | |
2003-11-08 | Don't need hack copy of system() anymore in OS X 10.3. | Tom Lane | |
2003-11-08 | Fix parsing of create index call | Michael Meskes | |
2003-11-08 | Fix process-status handling for OS X 10.3. | Tom Lane | |
2003-11-08 | Adjust file so psql help picks it up properly. | Peter Eisentraut | |
patch by Kris Jurka | |||
2003-11-07 | Cause stats processes to detach from shared memory when started, so that | Tom Lane | |
they do not prevent the postmaster from deleting the shmem segment during a post-backend-crash restart cycle. Per recent discussion. | |||
2003-11-07 | zero_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-06 | Minor copy-editing. | Tom Lane | |
2003-11-06 | Make the detection of nsgmls more robust for funny shells. | Peter Eisentraut | |
2003-11-05 | Fix 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-05 | Add -O to really trigger compiler bug. | Peter Eisentraut | |
2003-11-05 | Check off UnixWare. | Peter Eisentraut | |
2003-11-05 | Add detection of compiler bug. | Peter Eisentraut | |
2003-11-05 | Minor copy-editing. | Tom Lane | |
2003-11-04 | Some copy-editing for 7.4 release notes. | Tom Lane | |
2003-11-04 | Give the full syntax rules for subscripting and field selection in the | Tom Lane | |
proper place, namely the syntax discussion of value expressions. | |||
2003-11-04 | Update keywords table. | Peter Eisentraut | |
2003-11-04 | Remove unused graphics files. | Peter Eisentraut | |
2003-11-04 | Add report about HP-UX 11.00. | Peter Eisentraut | |
2003-11-04 | Random copy-editing. | Peter Eisentraut | |
2003-11-04 | Improve wording of spinlocks-missing compilation error message. | Peter Eisentraut | |
2003-11-04 | Make sure bug fix makes it into 7.4 as well. Thanks Peter. | Michael Meskes | |
2003-11-04 | fix typo. (role_columns_grants -> role_column_grants) | Tatsuo Ishii | |
2003-11-04 | Copy-editing. | Tom Lane | |
2003-11-03 | tag it Release Candidate 1, as previously discussedREL7_4_RC1 | PostgreSQL Daemon | |
2003-11-02 | Adjust data types in some of the UNION tests to avoid potentially | Tom Lane | |
platform-dependent results, as per example from Larry Rosenman. | |||
2003-11-02 | Provide a way to run the parallel regression tests with a user-specified | Tom Lane | |
limit on the number of simultaneous connections. Andrew Dunstan, with review by Tom Lane. | |||
2003-11-02 | Fix language. | Peter Eisentraut | |
2003-11-02 | Make spelling consistent. | Peter Eisentraut | |
2003-11-02 | pg_dumpall doesn't use psql anymore. | Peter Eisentraut | |
2003-11-02 | Put --describe-config in the right place. | Peter Eisentraut | |
2003-11-02 | Fix name in supported platforms list. | Peter Eisentraut | |
2003-11-02 | Complete options help and put it in less random order. | Peter Eisentraut | |
2003-11-02 | Call domains "domains", not "derived types". | Peter Eisentraut | |
2003-11-02 | Update ports list. | Peter Eisentraut | |
2003-11-01 | Unset 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-01 | Fix CFLAGS logic. | Peter Eisentraut | |
2003-11-01 | More whitespace fixes. Do people write the expected files by hand? | Peter Eisentraut | |
2003-11-01 | Fix hidden whitespace differences between expected and result files. | Peter Eisentraut | |
2003-11-01 | Spell checking, consistent terminology. | Peter Eisentraut | |
2003-10-31 | Update future-tense comments in README to present tense. Noted by | Tom Lane | |
Neil Conway. | |||
2003-10-31 | Rewrite GiST documentation into something actually useful. | Tom Lane | |
Christopher Kings-Lynne | |||
2003-10-31 | Fix broken markup. | Tom Lane | |
2003-10-31 | Translation update | Peter Eisentraut | |
2003-10-31 | When 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. |