aboutsummaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
...
* Done:Bruce Momjian2002-09-01
| | | | > o -SELECT col FROM tab WHERE numeric_col = 10.1 fails, requires quotes
* Code review for pg_locks feature. Make shmemoffset of PROCLOCK structsTom Lane2002-08-31
| | | | | | | | available (else there's no way to interpret the list links). Change pg_locks view to show transaction ID locks separately from ordinary relation locks. Avoid showing N duplicate rows when the same lock is held multiple times (seems unlikely that users care about exact hold count). Improve documentation.
* *** empty log message ***Bruce Momjian2002-08-31
|
* Updates to reflect availability of autocommit option.Tom Lane2002-08-30
|
* AUTOCOMMIT mode is now an available backend GUC variable; setting itTom Lane2002-08-30
| | | | | | | | | to false provides more SQL-spec-compliant behavior than we had before. I am not sure that setting it false is actually a good idea yet; there is a lot of client-side code that will probably be broken by turning autocommit off. But it's a start. Loosely based on a patch by David Van Wie.
* Add attisinherited column to pg_attribute; use it to guard againstTom Lane2002-08-30
| | | | | | column additions, deletions, and renames that would let a child table get out of sync with its parent. Patch by Alvaro Herrera, with some kibitzing by Tom Lane.
* Update documentation for --with-perl.Bruce Momjian2002-08-30
|
* Improve wording after wal_files removal.Bruce Momjian2002-08-30
|
* Complete TODO item:Bruce Momjian2002-08-30
| | | | | * Remove wal_files postgresql.conf option because WAL files are now recycled
* Back out password packet length check.Bruce Momjian2002-08-30
| | | | Improve wording of pre-7.3 syntax mention.
* Add comment on old sytax for SELECT FOR UPDATE/LIMIT and COPY.Bruce Momjian2002-08-30
|
* PL/pgSQL functions can return sets. Neil Conway's patch, modified soTom Lane2002-08-30
| | | | | that the functionality is available to anyone via ReturnSetInfo, rather than hard-wiring it to PL/pgSQL.
* Make pg_resetxlog options parsing more standard and prepare messages forPeter Eisentraut2002-08-29
| | | | translation.
* The unit for statement_timeout is s/1000, not s/1000000Bruce Momjian2002-08-29
| | | | Manfred Koizar
* Adjust nodeFunctionscan.c to reset transient memory context between callsTom Lane2002-08-29
| | | | | | | to the table function, thus preventing memory leakage accumulation across calls. This means that SRFs need to be careful to distinguish permanent and local storage; adjust code and documentation accordingly. Patch by Joe Conway, very minor tweaks by Tom Lane.
* A few more fixes for the <replaceable>able> fiasco.Tom Lane2002-08-29
|
* FOUND patch was a bit over-enthusiastic: SQL commands that are notTom Lane2002-08-29
| | | | | INSERT, UPDATE, or DELETE shouldn't change FOUND. IMHO anyway. Also, try to make documentation a little clearer.
* Remove support for version-0 FE/BE protocol, per pghackers discussion.Tom Lane2002-08-29
| | | | This breaks support for 6.2 or older client libraries.
* Code review for standalone composite types, query-specified compositeTom Lane2002-08-29
| | | | | types, SRFs. Not happy with memory management yet, but I'll commit these other changes.
* Add mention of foreign key dependency and SERIAL in 7.2 data restores.Bruce Momjian2002-08-28
| | | | | | Note can probably be removed after a couple of releases. Rod Taylor
* Remove:Bruce Momjian2002-08-28
| | | | < * Remove PGPASSWORD because it is insecure on some OS's, in 7.4
* Update info about relkind and pg_type entries for composite-types patch.Tom Lane2002-08-28
|
* Allow FOR UPDATE to appear after LIMIT/OFFSET to match MySQL syntax and asBruce Momjian2002-08-28
| | | | a more logical ordering.
* Add:Bruce Momjian2002-08-27
| | | | > o Add SET SCHEMA
* Enable locale, so case conversion (identifier processing) and numberPeter Eisentraut2002-08-27
| | | | | | formatting (\timing) works correctly. Change "Total time" to "Time" since there is nothing that "total" refers to. Remove non-multibyte code.
* Reimplement pg_dumpall in C. Currently no change in functionality,Peter Eisentraut2002-08-27
| | | | except that it's more robust, reconnects less often, and is NLS'ed.
* Add:Bruce Momjian2002-08-27
| | | | > * Allow free space map to be auto-sized or warn when it is too small
* Add error code emails.Bruce Momjian2002-08-27
|
* Add:Bruce Momjian2002-08-27
| | | | | > * Allow REINDEX to rebuild all indexes, remove /contrib/reindex > o Allow CLUSTER to cluster all tables, remove clusterdb
* PREPARE/EXECUTE statements. Patch by Neil Conway, some kibitzingTom Lane2002-08-27
| | | | from Tom Lane.
* Done:Bruce Momjian2002-08-27
| | | | > o -Cluster all tables at once using pg_index.indisclustered set during
* Add to mmap discussion.Bruce Momjian2002-08-27
|
* Cleanup of SGMLBruce Momjian2002-08-27
|
* I attach a little patch to make CLUSTER set and reset the indisclusteredBruce Momjian2002-08-27
| | | | | | | | | | | | | | | | | bit on the indexes. I also attach clusterdb and clusterdb.sgml; both of them are blatant rips of vacuumdb and vacuumdb.sgml, but get the job done. Please review them, as I'm probably making a lot of mistakes with SGML and I can't compile it here. vacuumdb itself is not very comfortable to use when the databases have passwords, because it has to connect once for each table (I can probably make it connect only once for each database; should I?). Because of this I added a mention of PGPASSWORDFILE in the documentation, but I don't know if that is the correct place for that. Alvaro Herrera
* Add OS X link line example for external functions.Bruce Momjian2002-08-26
|
* Add discussion of pre-write pages to WAL.Bruce Momjian2002-08-26
|
* Add:Bruce Momjian2002-08-26
| | | | > partial page writes [wal]
* Add:Bruce Momjian2002-08-26
| | | | > * Add CORRESPONDING BY to UNION/INTERSECT/EXCEPT
* Remove:Bruce Momjian2002-08-26
| | | | < o Add plsh server-side shell language (Peter E)
* *** empty log message ***Bruce Momjian2002-08-26
|
* Add to selfjoin DELETE todo.Bruce Momjian2002-08-26
|
* Add:Bruce Momjian2002-08-26
| | | | > * Allow DELETE to handle table aliases for self-joins [delete]
* Add delete selfjoin item.Bruce Momjian2002-08-26
|
* Add info on disabled triggers.Bruce Momjian2002-08-26
|
* Add:Bruce Momjian2002-08-26
| | | | > * Allow triggers to be disabled [trigger]
* Add 'return' file.Bruce Momjian2002-08-26
|
* Add return tuple count item to TODO.Bruce Momjian2002-08-26
|
* Add:Bruce Momjian2002-08-26
| | | | > * Return proper effected tuple count from complex commands [return]
* Add anther sequential scan email.Bruce Momjian2002-08-26
|
* Add mention of 1 terrabyte databases.Bruce Momjian2002-08-26
|