aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Don't reference pthread.h unless we have threads enabled, per Peter.Bruce Momjian2003-10-24
|
* Update for osX 10.3.Bruce Momjian2003-10-24
|
* Update ports for freebsd, cygwin.Bruce Momjian2003-10-24
|
* Use AROPT, not hard-coded flags.Peter Eisentraut2003-10-24
|
* Update Linux/Sparc 32-bit port.Bruce Momjian2003-10-24
|
* Update Linux x86 port.Bruce Momjian2003-10-24
|
* Update OSX port.Bruce Momjian2003-10-24
|
* Mark BSD/OS as working in 7.4.Bruce Momjian2003-10-24
|
* Move pre-7.3 platforms to unsupported.Bruce Momjian2003-10-24
|
* Translation updatesPeter Eisentraut2003-10-24
|
* Move 2phase discussion to 7.5 queue, not TODO.detail.Bruce Momjian2003-10-24
|
* Move 2phase discussion to 7.5 queue, not TODO.detail.Bruce Momjian2003-10-24
| | | | | < o Queries across databases or servers (two-phase commit) [2phase] > o Queries across databases or servers (two-phase commit)
* Add 2-phase TODO.detail.Bruce Momjian2003-10-24
|
* Add TODO.detail:Bruce Momjian2003-10-24
| | | | > o Queries across databases or servers (two-phase commit) [2phase]
* Update INSTALL to say beta5.Bruce Momjian2003-10-23
|
* Remove obsolete information about altering default optimization flags forTom Lane2003-10-23
| | | | | gcc. Per comment from original author, Brian Gallew: "Ancient history. Kill it fast."
* Move docs about index cost estimation functions and writing a proceduralTom Lane2003-10-22
| | | | | | | language handler to the 'Internals' area, per my proposal of yesterday. Clean up the trigger documentation a bit. Push SPI chapter to the end of its part, and reorder the Internals chapters into what seems a more sensible order (at the moment anyway).
* Here is a documentation patch that makes zulu, etc. all more consistent.Bruce Momjian2003-10-22
|
* Release notes updates from Neil Conway.Bruce Momjian2003-10-22
|
* Add:Bruce Momjian2003-10-22
| | | | > * Allow functions to have a search path specified at creation time
* Add missing semicolon, per Johann Uhrmann.Tom Lane2003-10-22
| | | | Avoids warnings from newer bisons.
* Add mention that "today" doesn't work as column default anymore.Bruce Momjian2003-10-22
|
* up configure to beta5REL7_4_BETA5PostgreSQL Daemon2003-10-22
|
* Another example-to-documentation difference. Maybe we can find aTom Lane2003-10-22
| | | | better way to keep these in sync...
* Ooops, missed updating this part of the complex-datatype example.Tom Lane2003-10-21
|
* Update the complex-datatype example to V1 function calling conventions,Tom Lane2003-10-21
| | | | | and add binary send/receive functions. Fix some other grottiness such as failure to mark the C functions STRICT.
* For some reason, the preface mentions just six of the seven major partsTom Lane2003-10-21
| | | | of the book. Fix it.
* Fix built-in SQL-language functions to ensure that referenced namesTom Lane2003-10-21
| | | | | | are properly schema-qualified. Christopher Kings-Lynne
* Remove:Bruce Momjian2003-10-21
| | | | < o Allow BINARY option to SELECT, just like DECLARE
* Update:Bruce Momjian2003-10-21
| | | | | < * Allow INET subnet tests to use indexes > * Allow INET subnet tests using non-constants to be indexed
* Cope with platforms that offer LONGLONG_MIN in place of the C99-specTom Lane2003-10-21
| | | | LLONG_MIN. One example is AIX, per report from Andreas.
* Revert to 7.3-and-before practice of only including <fcntl.h> in c.hTom Lane2003-10-21
| | | | on Windows; per complaint from Andreas that it breaks AIX build.
* Fix findLastBuiltinOid_V70() to deliver correct result when runningTom Lane2003-10-21
| | | | | | against a 7.0 server. Christopher Kings-Lynne
* Update per Tom:Bruce Momjian2003-10-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | < * Allow INET subnet tests using non-constants > * Allow INET subnet tests to use indexes 101a102 > o Allow MIN()/MAX() on arrays 144c145 < * Allow CREATE INDEX zman_index ON test (date_trunc( 'day', zman ) datetime_ops) > * -Allow CREATE INDEX zman_index ON test (date_trunc( 'day', zman ) datetime_ops) 166c167 < * Improve handling of index scans for NULL > * Allow use of indexes to search for NULLs 203a205 > * Add optional textual message to NOTIFY 252c254 < o Add SET SCHEMA > o Add SET PATH for schemas 297a300 > * Allow fastpast to pass values in portable format 344a348 > * Allow statement-level triggers to access modified rows 526d529 < o Add optional textual message to NOTIFY 530d532 < o Allow fastpast to pass values in portable format 533c535 < o Special passing of binary values in platform-neutral format (bytea?) > o -Special passing of binary values in platform-neutral format (bytea?)
* Add release info about dollar signs to migration section:Bruce Momjian2003-10-21
| | | | | | | <listitem><para> Dollar sign (<literal>$</>) is no longer allowed in operator names</para></listitem> <listitem><para> Dollar sign (<literal>$</>) can be a non-first character in identifiers</para></listitem>
* Update catalog version after information schema changes.Peter Eisentraut2003-10-20
|
* Complain if pg_restore is given both -d and -f options; this suggestsTom Lane2003-10-20
| | | | the user is confused about whether -f is input or output file.
* It is possible for ResolveNew to be used to insert a sublink into aTom Lane2003-10-20
| | | | | | | | | | subquery that didn't previously have one. We have traditionally made the caller of ResolveNew responsible for updating the hasSubLinks flag of the outermost query, but this fails to account for hasSubLinks in subqueries. Fix ResolveNew to handle this. We might later want to change the calling convention of ResolveNew so that it can fix the outer query too, simplifying callers. But I went with the localized fix for now. Per bug report from J Smith, 20-Oct-03.
* Improve error reporting in parseTypeString(), motivated by confusingTom Lane2003-10-20
| | | | behavior reported by Martin Marques.
* Install dummy sqlda.h file since this is needed for compatibility.Michael Meskes2003-10-20
|
* When building shared libraries on HPUX with gcc, forcibly include -lgccTom Lane2003-10-20
| | | | | | | | | to ensure any needed compiler support routines are included. This is arguably appropriate on *every* gcc platform, but for the moment I'll take the conservative approach of only doing it on a platform where it's provably useful. Per complaint from Heiko Lehmann, 13-Feb-03, as well as personal experience --- contrib/pgstattuple has never worked for me, but it does now.
* Save_r, Save_t should be static not global variables.Tom Lane2003-10-19
|
* Update README file to show 7.4 oidjoins relationships. The regressionTom Lane2003-10-19
| | | | test was updated previously, but documentation is lagging.
* Adjust libpq to avoid deadlock when both client and server want to sendTom Lane2003-10-19
| | | | | | data, and both have filled the transmission buffers. One scenario where this can happen was illustrated here: http://archives.postgresql.org/pgsql-hackers/2003-04/msg00979.php
* Check for both Informix modes when parsing include files.Michael Meskes2003-10-19
|
* Cleanup on --help-config: Now called --describe-config, no further options,Peter Eisentraut2003-10-18
| | | | | machine readable, without headers, not sorted. Parameter descriptions adjusted to fit first sentence + rest convention.
* Further work on information_schema. _pg_keyissubset() wasn't quiteTom Lane2003-10-18
| | | | | | | | | | fully search-path-proof yet; also, element_types view did not work for parameters and result types of functions, because it didn't generate the object_name for the function the same way the data_type_privileges view does. While at it, centralize dependencies on INDEX_MAX_KEYS/ FUNC_MAX_ARGS into a function returning setof int, so that it will be easier to fix information_schema for nonstandard values of these parameters.
* Repair interaction between IN-join processing and subselect pullup thatTom Lane2003-10-18
| | | | | I inadvertently broke a few days ago (per report from Sean Thomas). Add regression test case to try to catch any similar breakage in future.
* Simplify loop test to avoid bug in AIX compiler, per Andreas.Tom Lane2003-10-18
|
* Information schema fixes:Peter Eisentraut2003-10-18
| | | | | | | | Use pg_get_constraintdef instead of pg_constraint.consrc Use UNION ALL instread of UNION Make use of regclass type for getting OID of system catalogs Add schema qualifications where necessary Fix typos