aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Minor copy-editing.Tom Lane2003-11-05
|
* Some copy-editing for 7.4 release notes.Tom Lane2003-11-04
|
* Give the full syntax rules for subscripting and field selection in theTom Lane2003-11-04
| | | | proper place, namely the syntax discussion of value expressions.
* Update keywords table.Peter Eisentraut2003-11-04
|
* Update install-sh and mkinstalldirs from master source (Automake). TheyPeter Eisentraut2003-11-04
| | | | | have included a few fixes over the years to make them more robust and faster.
* Add note to update config.guess and config.sub at the start of beta.Peter Eisentraut2003-11-04
|
* New config.guess and config.sub from upstream.Peter Eisentraut2003-11-04
|
* Remove unused graphics files.Peter Eisentraut2003-11-04
|
* Add report about HP-UX 11.00.Peter Eisentraut2003-11-04
|
* Random copy-editing.Peter Eisentraut2003-11-04
|
* Improve message wording for spinlocks-missing compilation error.Peter Eisentraut2003-11-04
|
* Copy-editing.Tom Lane2003-11-04
|
* patch for rs.previous and test case as well as patch for allowing server and ↵Dave Cramer2003-11-03
| | | | port to be specified in test cases
* accept url and fk action fix from Kris JurkaDave Cramer2003-11-03
|
* Fixed potentially uninitialized memory bug in compatlib.Michael Meskes2003-11-03
|
* Tag HEAD as 7.5devel.Tom Lane2003-11-03
|
* fix typo. (role_columns_grants -> role_column_grants)Tatsuo Ishii2003-11-03
|
* tag it Release Candidate 1, as previously discussedREL7_4_RC1PostgreSQL Daemon2003-11-03
|
* Adjust data types in some of the UNION tests to avoid potentiallyTom Lane2003-11-02
| | | | platform-dependent results, as per example from Larry Rosenman.
* Provide a way to run the parallel regression tests with a user-specifiedTom Lane2003-11-02
| | | | | limit on the number of simultaneous connections. Andrew Dunstan, with review by Tom Lane.
* Fix language.Peter Eisentraut2003-11-02
|
* Make spelling consistent.Peter Eisentraut2003-11-02
|
* pg_dumpall doesn't use psql anymore.Peter Eisentraut2003-11-02
|
* Put --describe-config in the right place.Peter Eisentraut2003-11-02
|
* Fix name in supported platforms list.Peter Eisentraut2003-11-02
|
* Complete options help and put it in less random order.Peter Eisentraut2003-11-02
|
* Call domains "domains", not "derived types".Peter Eisentraut2003-11-02
|
* Update ports list.Peter Eisentraut2003-11-02
|
* Unset CFLAGS before reading template. This should be more robust.Peter Eisentraut2003-11-01
| | | | | | | | 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.
* Fix CFLAGS logic.Peter Eisentraut2003-11-01
|
* More whitespace fixes. Do people write the expected files by hand?Peter Eisentraut2003-11-01
|
* Fix hidden whitespace differences between expected and result files.Peter Eisentraut2003-11-01
|
* Spell checking, consistent terminology.Peter Eisentraut2003-11-01
|
* Update future-tense comments in README to present tense. Noted byTom Lane2003-10-31
| | | | Neil Conway.
* Rewrite GiST documentation into something actually useful.Tom Lane2003-10-31
| | | | Christopher Kings-Lynne
* Fix broken markup.Tom Lane2003-10-31
|
* Translation updatePeter Eisentraut2003-10-31
|
* When a superuser does GRANT or REVOKE on an object he doesn't own,Tom Lane2003-10-31
| | | | | | | | | 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.
* new protocol, faster startup.Bruce Momjian2003-10-31
|
* Update for polymorphic functions, needs more work.Bruce Momjian2003-10-31
|
* MAC OS X => Mac OS XBruce Momjian2003-10-31
|
* Release updates suggested by Tom.Bruce Momjian2003-10-31
|
* Minor cleanup of PQunescapeBytea(). Avoid unportable assumptions aboutTom Lane2003-10-31
| | | | | | behavior of malloc and realloc when request size is 0. Fix escape sequence recognizer so that only valid 3-digit octal sequences are treated as escape sequences ... isdigit() is not a correct test.
* Moved the recently added test for foreign key disabled by rewriteJan Wieck2003-10-31
| | | | | | rule into the rule.sql since it affects the latter if run in paralell. Jan
* If EOF is found inside a string/comment/etc. stop parsing.Michael Meskes2003-10-31
|
* Remove <note> take, use another paragraph for description.Bruce Momjian2003-10-31
|
* Update HISTORY.Bruce Momjian2003-10-31
|
* Update with more comments.Bruce Momjian2003-10-31
|
* Fix for possible referential integrity violation when a qualified ON INSERTJan Wieck2003-10-31
| | | | | | | | rule split the query into one INSERT and one UPDATE where the UPDATE then hit's the just created row without modifying the key fields again. In this special case, the new key slipped in totally unchecked. Jan
* Small fix to Christopher's recent improvements --- underscore is notTom Lane2003-10-31
| | | | | a special character in regexes, but it is for LIKE, so NOT LIKE 'pg_%' is incorrect. Need NOT LIKE 'pg\_%'.