| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2002-09-01 | Add log_duration to GUC/postgresql.conf. | Bruce Momjian | |
| Rename debug_print_query to log_statement and rename show_query_stats to show_statement_stats. | |||
| 2002-09-01 | plpgsql functions can return RECORD, per Neil Conway. | Tom Lane | |
| 2002-09-01 | Minor copy-editing. | Tom Lane | |
| 2002-09-01 | Remove mention of wal_files in a SHOW example. | Bruce Momjian | |
| 2002-08-31 | Code review for pg_locks feature. Make shmemoffset of PROCLOCK structs | Tom Lane | |
| 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. | |||
| 2002-08-30 | Updates to reflect availability of autocommit option. | Tom Lane | |
| 2002-08-30 | AUTOCOMMIT mode is now an available backend GUC variable; setting it | Tom Lane | |
| 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. | |||
| 2002-08-30 | Add attisinherited column to pg_attribute; use it to guard against | Tom Lane | |
| 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. | |||
| 2002-08-30 | Update documentation for --with-perl. | Bruce Momjian | |
| 2002-08-30 | Improve wording after wal_files removal. | Bruce Momjian | |
| 2002-08-30 | Complete TODO item: | Bruce Momjian | |
| * Remove wal_files postgresql.conf option because WAL files are now recycled | |||
| 2002-08-30 | Back out password packet length check. | Bruce Momjian | |
| Improve wording of pre-7.3 syntax mention. | |||
| 2002-08-30 | Add comment on old sytax for SELECT FOR UPDATE/LIMIT and COPY. | Bruce Momjian | |
| 2002-08-30 | PL/pgSQL functions can return sets. Neil Conway's patch, modified so | Tom Lane | |
| that the functionality is available to anyone via ReturnSetInfo, rather than hard-wiring it to PL/pgSQL. | |||
| 2002-08-29 | Make pg_resetxlog options parsing more standard and prepare messages for | Peter Eisentraut | |
| translation. | |||
| 2002-08-29 | The unit for statement_timeout is s/1000, not s/1000000 | Bruce Momjian | |
| Manfred Koizar | |||
| 2002-08-29 | Adjust nodeFunctionscan.c to reset transient memory context between calls | Tom Lane | |
| 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. | |||
| 2002-08-29 | A few more fixes for the <replaceable>able> fiasco. | Tom Lane | |
| 2002-08-29 | FOUND patch was a bit over-enthusiastic: SQL commands that are not | Tom Lane | |
| INSERT, UPDATE, or DELETE shouldn't change FOUND. IMHO anyway. Also, try to make documentation a little clearer. | |||
| 2002-08-29 | Remove support for version-0 FE/BE protocol, per pghackers discussion. | Tom Lane | |
| This breaks support for 6.2 or older client libraries. | |||
| 2002-08-29 | Code review for standalone composite types, query-specified composite | Tom Lane | |
| types, SRFs. Not happy with memory management yet, but I'll commit these other changes. | |||
| 2002-08-28 | Add mention of foreign key dependency and SERIAL in 7.2 data restores. | Bruce Momjian | |
| Note can probably be removed after a couple of releases. Rod Taylor | |||
| 2002-08-28 | Update info about relkind and pg_type entries for composite-types patch. | Tom Lane | |
| 2002-08-28 | Allow FOR UPDATE to appear after LIMIT/OFFSET to match MySQL syntax and as | Bruce Momjian | |
| a more logical ordering. | |||
| 2002-08-27 | Enable locale, so case conversion (identifier processing) and number | Peter Eisentraut | |
| formatting (\timing) works correctly. Change "Total time" to "Time" since there is nothing that "total" refers to. Remove non-multibyte code. | |||
| 2002-08-27 | Reimplement pg_dumpall in C. Currently no change in functionality, | Peter Eisentraut | |
| except that it's more robust, reconnects less often, and is NLS'ed. | |||
| 2002-08-27 | PREPARE/EXECUTE statements. Patch by Neil Conway, some kibitzing | Tom Lane | |
| from Tom Lane. | |||
| 2002-08-27 | Cleanup of SGML | Bruce Momjian | |
| 2002-08-27 | I attach a little patch to make CLUSTER set and reset the indisclustered | Bruce Momjian | |
| 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 | |||
| 2002-08-26 | Add OS X link line example for external functions. | Bruce Momjian | |
| 2002-08-26 | Add mention of 1 terrabyte databases. | Bruce Momjian | |
| 2002-08-25 | Update docs for 7.2.2 release info. | Bruce Momjian | |
| 2002-08-25 | Update Japanese FAQ, from Jun Kuwamura | Bruce Momjian | |
| 2002-08-24 | The cstring datatype can now be copied, passed around, etc. The typlen | Tom Lane | |
| value '-2' is used to indicate a variable-width type whose width is computed as strlen(datum)+1. Everything that looks at typlen is updated except for array support, which Joe Conway is working on; at the moment it wouldn't work to try to create an array of cstring. | |||
| 2002-08-23 | Further cleanup around the edges of OPAQUE/pseudotype changes. Correct | Tom Lane | |
| the declarations of some index access method support functions. Support SQL functions returning VOID. | |||
| 2002-08-23 | Not sure how I fixed it the first time, but here's a fix for another | Bruce Momjian | |
| instance in which the docs mention that 'NAMEDATALEN == 32". Neil Conway | |||
| 2002-08-23 | This patch updates the CREATE OPERATOR sgml docs for the new default | Bruce Momjian | |
| settings of NAMEDATALEN. I looked through the docs for other references to NAMEDATALEN, but this is the only one I could find. Neil Conway | |||
| 2002-08-23 | Update Russian FAQ. | Bruce Momjian | |
| 2002-08-23 | Very minor copy-editing. | Tom Lane | |
| 2002-08-23 | Add note that explains that \df omits functions it thinks are I/O functions. | Tom Lane | |
| 2002-08-23 | Update reference to value of NAMEDATALEN. Someone needs to troll the | Tom Lane | |
| docs and find the other obsolete statements that no doubt lurk. | |||
| 2002-08-22 | Mark 7.2.2 as newest release. | Bruce Momjian | |
| 2002-08-22 | Update FAQ. | Bruce Momjian | |
| 2002-08-22 | Improve wording of upgrade section. | Bruce Momjian | |
| 2002-08-22 | Fix for documention: | Bruce Momjian | |
| >>" It's also possible to select no escape character by writing ESCAPE ''. >>In this case there is no way to turn off the special meaning of >>underscore and percent signs in the pattern." Joe Conway | |||
| 2002-08-22 | > > I had great difficulty in finding how to change the search path, so here | Bruce Momjian | |
| > > is a patch to add some cross-referencing. Oliver Elphick | |||
| 2002-08-22 | Remove libpq++ SGML documentation. | Bruce Momjian | |
| 2002-08-22 | Add a bunch of pseudo-types to replace the behavior formerly associated | Tom Lane | |
| with OPAQUE, as per recent pghackers discussion. I still want to do some more work on the 'cstring' pseudo-type, but I'm going to commit the bulk of the changes now before the tree starts shifting under me ... | |||
| 2002-08-21 | Fix bad markup detected by Alvaro Herrera | Bruce Momjian | |
| 2002-08-21 | Fix markup, Alvaro Herrera. | Bruce Momjian | |
