summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-10-31new protocol, faster startup.Bruce Momjian
2003-10-31Update for polymorphic functions, needs more work.Bruce Momjian
2003-10-31MAC OS X => Mac OS XBruce Momjian
2003-10-31Release updates suggested by Tom.Bruce Momjian
2003-10-31Minor cleanup of PQunescapeBytea(). Avoid unportable assumptions aboutTom Lane
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.
2003-10-31Moved the recently added test for foreign key disabled by rewriteJan Wieck
rule into the rule.sql since it affects the latter if run in paralell. Jan
2003-10-31If EOF is found inside a string/comment/etc. stop parsing.Michael Meskes
2003-10-31Remove <note> take, use another paragraph for description.Bruce Momjian
2003-10-31Update HISTORY.Bruce Momjian
2003-10-31Update with more comments.Bruce Momjian
2003-10-31Fix for possible referential integrity violation when a qualified ON INSERTJan Wieck
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
2003-10-31Small fix to Christopher's recent improvements --- underscore is notTom Lane
a special character in regexes, but it is for LIKE, so NOT LIKE 'pg_%' is incorrect. Need NOT LIKE 'pg\_%'.
2003-10-31Use Tcl ByteArray objects to avoid unwanted character set translationTom Lane
in libpgtcl's lo_read/lo_write commands. Also, deal correctly with failure return from lo_read(). ljb and Tom Lane.
2003-10-30Further work on tab completion code: arrange for system catalogs to beTom Lane
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.
2003-10-30Fix markup by using <note> for comments.Bruce Momjian
2003-10-30More SGML cleanup.Bruce Momjian
2003-10-30SGML cleanup.Bruce Momjian
2003-10-30Update SGML release notes with Peter's direction. Does not compileBruce Momjian
because of section adjustments still needed.
2003-10-30Mark release note comments as new subsections rather than footnotes, perBruce Momjian
Peter. Remove "Changes" section and pull all sections below it up one level. More comment additions.
2003-10-30Allow the query for a plpgsql cursor to begin with '(' as well as 'SELECT'.Tom Lane
Per example from Kumar, 30-Oct-03.
2003-10-30use the result set to set the fetchsizeDave Cramer
2003-10-30Applied patch by Dave Cramer to fix several bugs in compatlib.Michael Meskes
2003-10-30Fix markup for new release footnotes.Bruce Momjian
2003-10-30Update FAQ_DEV: elog => ereport.Bruce Momjian
2003-10-29Update more release descriptions.Bruce Momjian
2003-10-29Add more footnote comments to the release notes.Bruce Momjian
2003-10-29Fix some corner cases in ACL manipulation: don't foul up on an emptyTom Lane
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.)
2003-10-29Add first release note detail item.Bruce Momjian
2003-10-29Update for 7.4 --- prefer IN to EXISTS.Bruce Momjian
2003-10-29Give a useful error message if a RangeVar is encountered in an expression.Tom Lane
Per example from Ian Barwick, 28-Oct-03.
2003-10-29compact_fsm_storage() does need to handle the case where a relation'sTom Lane
FSM data has to be both moved down and compressed. Per report from Dror Matalon.
2003-10-29Update for OSF 4.0 platform.Bruce Momjian
2003-10-29Patches from Oliver Jowett to fix CursorFetchTest, 7.4 now does not ↵Dave Cramer
automatically delete cursors
2003-10-28Don't include "schema." in the set of possible tab completions onceTom Lane
"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.
2003-10-28Include -lkrb5 when needed for shlibs depending on libpq. Per reportTom Lane
from Johan Henselmans.
2003-10-28Don't choke when the handler for a procedural language is located inTom Lane
the pg_catalog schema. Per bug report some months back from Jochem van Dieten.
2003-10-28Guard against Ant versions that print CLASSPATH before the version numberTom Lane
in -version output. Per report from Johann Uhrmann.
2003-10-28Adjust wording to avoid giving the impression that schema USAGETom Lane
privilege hides system catalog entries.
2003-10-28Add --describe-config to top of postgres manual page.Bruce Momjian
2003-10-28Document --describe-config.Bruce Momjian
2003-10-27Change Solaris tests to test for SHM_SHARE_MMU, per Tom.Bruce Momjian
2003-10-27Update Win32 clients.Bruce Momjian
2003-10-27Un-break Darwin port.Tom Lane
2003-10-27Here is an update to the dbmirror README file.Bruce Momjian
-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
2003-10-27Fix MOVE/FETCH wording.Bruce Momjian
2003-10-26Update intel solaris.Bruce Momjian
2003-10-26Improve indenting of port entries.Bruce Momjian
2003-10-26Update Solaris 5.6.Bruce Momjian
2003-10-26Correct version numbers.Peter Eisentraut
2003-10-26Fixed bug with indicators when storage for the string is dynamically allocated.Michael Meskes