Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Update for polymorphic functions, needs more work. | Bruce Momjian | 2003-10-31 |
| | |||
* | MAC OS X => Mac OS X | Bruce Momjian | 2003-10-31 |
| | |||
* | Release updates suggested by Tom. | Bruce Momjian | 2003-10-31 |
| | |||
* | Minor cleanup of PQunescapeBytea(). Avoid unportable assumptions about | Tom Lane | 2003-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 rewrite | Jan Wieck | 2003-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 Meskes | 2003-10-31 |
| | |||
* | Remove <note> take, use another paragraph for description. | Bruce Momjian | 2003-10-31 |
| | |||
* | Update HISTORY. | Bruce Momjian | 2003-10-31 |
| | |||
* | Update with more comments. | Bruce Momjian | 2003-10-31 |
| | |||
* | Fix for possible referential integrity violation when a qualified ON INSERT | Jan Wieck | 2003-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 not | Tom Lane | 2003-10-31 |
| | | | | | a special character in regexes, but it is for LIKE, so NOT LIKE 'pg_%' is incorrect. Need NOT LIKE 'pg\_%'. | ||
* | Use Tcl ByteArray objects to avoid unwanted character set translation | Tom Lane | 2003-10-31 |
| | | | | | in libpgtcl's lo_read/lo_write commands. Also, deal correctly with failure return from lo_read(). ljb and Tom Lane. | ||
* | Further work on tab completion code: arrange for system catalogs to be | Tom Lane | 2003-10-30 |
| | | | | | | | | | offered for completion only when the input-so-far is at least 'pg_'. This seems to be the best compromise behavior emerging from yesterday's discussion. While at it, refactor code to eliminate repetitive use of nearly identical queries, which was exceedingly tedious to maintain. Also const-ify code more thoroughly in hopes of moving constant data into text segment, and remove unnecessary length limit on queries. | ||
* | Fix markup by using <note> for comments. | Bruce Momjian | 2003-10-30 |
| | |||
* | More SGML cleanup. | Bruce Momjian | 2003-10-30 |
| | |||
* | SGML cleanup. | Bruce Momjian | 2003-10-30 |
| | |||
* | Update SGML release notes with Peter's direction. Does not compile | Bruce Momjian | 2003-10-30 |
| | | | | because of section adjustments still needed. | ||
* | Mark release note comments as new subsections rather than footnotes, per | Bruce Momjian | 2003-10-30 |
| | | | | | | | | Peter. Remove "Changes" section and pull all sections below it up one level. More comment additions. | ||
* | Allow the query for a plpgsql cursor to begin with '(' as well as 'SELECT'. | Tom Lane | 2003-10-30 |
| | | | | Per example from Kumar, 30-Oct-03. | ||
* | use the result set to set the fetchsize | Dave Cramer | 2003-10-30 |
| | |||
* | Applied patch by Dave Cramer to fix several bugs in compatlib. | Michael Meskes | 2003-10-30 |
| | |||
* | Fix markup for new release footnotes. | Bruce Momjian | 2003-10-30 |
| | |||
* | Update FAQ_DEV: elog => ereport. | Bruce Momjian | 2003-10-30 |
| | |||
* | Update more release descriptions. | Bruce Momjian | 2003-10-29 |
| | |||
* | Add more footnote comments to the release notes. | Bruce Momjian | 2003-10-29 |
| | |||
* | Fix some corner cases in ACL manipulation: don't foul up on an empty | Tom Lane | 2003-10-29 |
| | | | | | | ACL array, and force languages to be treated as owned by the bootstrap user ID. (pg_language should have a lanowner column, but until it does this will have to do as a workaround.) | ||
* | Add first release note detail item. | Bruce Momjian | 2003-10-29 |
| | |||
* | Update for 7.4 --- prefer IN to EXISTS. | Bruce Momjian | 2003-10-29 |
| | |||
* | Give a useful error message if a RangeVar is encountered in an expression. | Tom Lane | 2003-10-29 |
| | | | | Per example from Ian Barwick, 28-Oct-03. | ||
* | compact_fsm_storage() does need to handle the case where a relation's | Tom Lane | 2003-10-29 |
| | | | | | FSM data has to be both moved down and compressed. Per report from Dror Matalon. | ||
* | Update for OSF 4.0 platform. | Bruce Momjian | 2003-10-29 |
| | |||
* | Patches from Oliver Jowett to fix CursorFetchTest, 7.4 now does not ↵ | Dave Cramer | 2003-10-29 |
| | | | | automatically delete cursors | ||
* | Don't include "schema." in the set of possible tab completions once | Tom Lane | 2003-10-28 |
| | | | | | | | | "schema." has been typed. This allows readline to complete subsequent characters immediately if all relations in the target schema start with the same prefix. This actually worked before, but I unintentionally broke it a few days ago. Also, make completion schema-aware for GRANT, REVOKE, VACUUM. | ||
* | Include -lkrb5 when needed for shlibs depending on libpq. Per report | Tom Lane | 2003-10-28 |
| | | | | from Johan Henselmans. | ||
* | Don't choke when the handler for a procedural language is located in | Tom Lane | 2003-10-28 |
| | | | | the pg_catalog schema. Per bug report some months back from Jochem van Dieten. | ||
* | Guard against Ant versions that print CLASSPATH before the version number | Tom Lane | 2003-10-28 |
| | | | | in -version output. Per report from Johann Uhrmann. | ||
* | Adjust wording to avoid giving the impression that schema USAGE | Tom Lane | 2003-10-28 |
| | | | | privilege hides system catalog entries. | ||
* | Add --describe-config to top of postgres manual page. | Bruce Momjian | 2003-10-28 |
| | |||
* | Document --describe-config. | Bruce Momjian | 2003-10-28 |
| | |||
* | Change Solaris tests to test for SHM_SHARE_MMU, per Tom. | Bruce Momjian | 2003-10-27 |
| | |||
* | Update Win32 clients. | Bruce Momjian | 2003-10-27 |
| | |||
* | Un-break Darwin port. | Tom Lane | 2003-10-27 |
| | |||
* | Here is an update to the dbmirror README file. | Bruce Momjian | 2003-10-27 |
| | | | | | | | | | -References to older versions of PostgreSQL have been removed(It no longer compiles against older versions) -Added a link to PgPerl at GBorg. Steven Singer | ||
* | Fix MOVE/FETCH wording. | Bruce Momjian | 2003-10-27 |
| | |||
* | Update intel solaris. | Bruce Momjian | 2003-10-26 |
| | |||
* | Improve indenting of port entries. | Bruce Momjian | 2003-10-26 |
| | |||
* | Update Solaris 5.6. | Bruce Momjian | 2003-10-26 |
| | |||
* | Correct version numbers. | Peter Eisentraut | 2003-10-26 |
| | |||
* | Fixed bug with indicators when storage for the string is dynamically allocated. | Michael Meskes | 2003-10-26 |
| | |||
* | 'sun' => '__sun__' | Bruce Momjian | 2003-10-26 |
| |