aboutsummaryrefslogtreecommitdiff
path: root/doc/src
Commit message (Collapse)AuthorAge
...
* 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
* 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.
* 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.
* PREPARE/EXECUTE statements. Patch by Neil Conway, some kibitzingTom Lane2002-08-27
| | | | from Tom Lane.
* 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 mention of 1 terrabyte databases.Bruce Momjian2002-08-26
|
* Update docs for 7.2.2 release info.Bruce Momjian2002-08-25
|
* Update Japanese FAQ, from Jun KuwamuraBruce Momjian2002-08-25
|
* The cstring datatype can now be copied, passed around, etc. The typlenTom Lane2002-08-24
| | | | | | | 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.
* Further cleanup around the edges of OPAQUE/pseudotype changes. CorrectTom Lane2002-08-23
| | | | | the declarations of some index access method support functions. Support SQL functions returning VOID.
* Not sure how I fixed it the first time, but here's a fix for anotherBruce Momjian2002-08-23
| | | | | | instance in which the docs mention that 'NAMEDATALEN == 32". Neil Conway
* This patch updates the CREATE OPERATOR sgml docs for the new defaultBruce Momjian2002-08-23
| | | | | | | settings of NAMEDATALEN. I looked through the docs for other references to NAMEDATALEN, but this is the only one I could find. Neil Conway
* Update Russian FAQ.Bruce Momjian2002-08-23
|
* Very minor copy-editing.Tom Lane2002-08-23
|
* Add note that explains that \df omits functions it thinks are I/O functions.Tom Lane2002-08-23
|
* Update reference to value of NAMEDATALEN. Someone needs to troll theTom Lane2002-08-23
| | | | docs and find the other obsolete statements that no doubt lurk.
* Mark 7.2.2 as newest release.Bruce Momjian2002-08-22
|
* Update FAQ.Bruce Momjian2002-08-22
|
* Improve wording of upgrade section.Bruce Momjian2002-08-22
|
* Fix for documention:Bruce Momjian2002-08-22
| | | | | | | | >>" 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
* > > I had great difficulty in finding how to change the search path, so hereBruce Momjian2002-08-22
| | | | | | > > is a patch to add some cross-referencing. Oliver Elphick
* Remove libpq++ SGML documentation.Bruce Momjian2002-08-22
|
* Add a bunch of pseudo-types to replace the behavior formerly associatedTom Lane2002-08-22
| | | | | | 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 ...
* Fix bad markup detected by Alvaro HerreraBruce Momjian2002-08-21
|
* Fix markup, Alvaro Herrera.Bruce Momjian2002-08-21
|
* Enable large file support.Peter Eisentraut2002-08-20
| | | | Use off_t and size_t in pg_dump to handle file offset arithmetic correctly.
* This patch improves the behavior of FOUND in PL/PgSQL. In Oracle,Bruce Momjian2002-08-20
| | | | | | | | | | | | FOUND is set whenever a SELECT INTO returns > 0 rows, *or* when an INSERT, UPDATE, or DELETE affects > 0 rows. We implemented the first part of this behavior, but not the second. I also improved the documentation on the various situations in which FOUND can be set (excluding inside FOR loops, which I still need to think about), and added some regression tests for this behavior. Neil Conway
* Allow pg_statistics to be reset by calling pg_stat_reset().Bruce Momjian2002-08-20
| | | | Christopher Kings-Lynne
* Add current_database().Bruce Momjian2002-08-20
| | | | | | | | | | | | | | | > Quick system function to pull out the current database. > > I've used this a number of times to allow stored procedures to find out > where they are. Especially useful for those that do logging or hit a > remote server. > > It's called current_database() to match with current_user(). It's also a necessity for an informational schema. The catalog (database) name is required in a number of places. Rod Taylor
* Add mention of -F not supported by pg_dumpall. Code already disallows it.Bruce Momjian2002-08-20
|
* Fix pg_dump to dump serial columns as serials. Per pghackers discussion,Tom Lane2002-08-19
| | | | | cause SERIAL column declaration not to imply UNIQUE, so that this can be done without creating an extra index.
* Fix broken tag.Tatsuo Ishii2002-08-19
|
* Make pg_dump output more portable and more pleasing to look at.Peter Eisentraut2002-08-18
| | | | | | | | | | | | | | | | | The -n and -N options were removed. Quoting is now smart enough to supply quotes if and only if necessary. Numerical types are now printed without quotes, except in cases of special values such as NaN. Boolean values printed as true and false. Most string literals now do not escape whitespace characters (newlines, etc.) for portability. SET SESSION AUTHORIZATION argument is a string literal, to follow SQL. Made commands output by pg_dump use consistent spacing and indentation.