aboutsummaryrefslogtreecommitdiff
path: root/doc/src
Commit message (Collapse)AuthorAge
...
* Have log_duration only output when log_statement has printed the query.Bruce Momjian2004-10-15
| | | | | | This handles the new multiple log_statement values. Ed L.
* Update wording.Bruce Momjian2004-10-15
|
* New wording on the three standards.Bruce Momjian2004-10-15
|
* Update mingw faq.Bruce Momjian2004-10-14
|
* Update Win32 fAQ.Bruce Momjian2004-10-14
|
* Typo cleanup.Bruce Momjian2004-10-14
|
* Update standards names.Bruce Momjian2004-10-14
|
* Update 2003 as an official standard.Bruce Momjian2004-10-14
|
* Add "draft".Bruce Momjian2004-10-14
|
* Reorder links.Bruce Momjian2004-10-14
|
* More URL updates.Bruce Momjian2004-10-14
|
* Update markup.Bruce Momjian2004-10-14
|
* New urls.Bruce Momjian2004-10-14
|
* Working improvement.Bruce Momjian2004-10-14
|
* Fix markup.Bruce Momjian2004-10-14
|
* Add standards URL's.Bruce Momjian2004-10-14
|
* Fix pg_indexes view so that it shows the index's tablespace not theTom Lane2004-10-11
| | | | | | parent table's tablespace, as per gripe from Michael Kleiser. Choose a more plausible column order for this view and pg_tables. Update documentation of these views, which was missed in original patch.
* Adjust configuration-files GUC behavior as per my recent proposal.Tom Lane2004-10-09
| | | | | | | | The vars are renamed to data_directory, config_file, hba_file, and ident_file, and are guaranteed to be set to accurate absolute paths during postmaster startup. This commit does not yet do anything about hiding path values from non-superusers.
* Add MinGW FAQ.Bruce Momjian2004-10-08
|
* Include schema name in pg_restore -l output, per request from Phil Endecott.Tom Lane2004-10-08
|
* Whack some sense into the configuration-file-location patch.Tom Lane2004-10-08
| | | | | | | Refactor code into something reasonably understandable, cause use of the feature to not fail in standalone backends or in EXEC_BACKEND case, fix sloppy guc.c table entries, make the documentation minimally usable.
* Suppress psql \s help display for platforms like Win32 that don'tBruce Momjian2004-10-06
| | | | | typically install witn readline, and throw an error if they try to access it.
* please find attached an alternate submission which addresses open itemBruce Momjian2004-10-06
| | | | | | | | | | | | | "make pgxs install by default". It is up to the committers to chose. (1) there is only one "install" target. no more "install-all-headers". it simplifies/changes several makefiles. (2) the documentation reflects the change. (3) a minor fix on pgxs to use a nicer patch without a double slash. Fabien Coelho
* Remove arithmetic operators on the 1-byte-char datatype, as per proposalsTom Lane2004-10-04
| | | | | | | made several times in the past. Add coercion functions between "char" and integer so that a workaround is possible if needed. Initdb forced.
* Add CVS URL for docs.Bruce Momjian2004-10-04
|
* Detect overflow in integer arithmetic operators (integer, smallint, andTom Lane2004-10-04
| | | | | | | | bigint variants). Clean up some inconsistencies in error message wording. Fix scanint8 to allow trailing whitespace in INT64_MIN case. Update int8-exp-three-digits.out, which seems to have been ignored by the last couple of people to modify the int8 regression test, and remove int8-exp-three-digits-win32.out which is thereby exposed as redundant.
* Fix error in setseed() docs: "int32" is not a (SQL) type, but "integer" is.Neil Conway2004-10-04
|
* Document that the semicolon following the final "END" in a function bodyNeil Conway2004-10-04
| | | | is optional.
* Don't assume PQdb() will return a valid result from a failed connection.Tom Lane2004-10-01
|
* Code review for NOWAIT patch: downgrade NOWAIT from fully reserved keywordTom Lane2004-10-01
| | | | | | to unreserved keyword, use ereport not elog, assign a separate error code for 'could not obtain lock' so that applications will be able to detect that case cleanly.
* Remove more traces of libpgtcl from the source tree. Also, make someNeil Conway2004-10-01
| | | | | semi-related SGML cleanup. Original patch from ljb220@mindspring.com, additional cleanup by Neil Conway.
* Add a note suggesting that users should use the newer version of pg_dumpNeil Conway2004-09-30
| | | | | to perform upgrades, and cleanup some nearby text. Patch from Robert Treat, editorializing by Neil Conway.
* Add more index entries for reference pages related to prepare queries.Neil Conway2004-09-30
| | | | From Alvaro Herrera, editorializing by Neil Conway.
* Update Brazilian FAQ.Bruce Momjian2004-09-30
| | | | Euler Taveira de Oliveira
* Add an index entry for tablespaces. From Kris Jurka.Neil Conway2004-09-30
|
* Add Farsi version of FAQ.Bruce Momjian2004-09-29
| | | | Mahmoud Taghizadeh
* Minor documentation improvement.Neil Conway2004-09-29
|
* Fix typo in docs.Neil Conway2004-09-28
|
* Update docs for Borland CC build.Bruce Momjian2004-09-27
|
* Addition to documentation about cvsup. From Andrew Dunstan, minor SGMLNeil Conway2004-09-27
| | | | tweak by Neil Conway.
* Fix misstatement in docs: CREATE TABLE AS is now part of the standard.Neil Conway2004-09-26
|
* Fix multiple breakages in our support for SSL certificates.Tom Lane2004-09-26
|
* Fix slightly misleading description of PERFORM syntax.Tom Lane2004-09-24
|
* Minor improvements to the release notes.Neil Conway2004-09-24
|
* Improve description of Execute message behavior, per Oliver Jowett.Tom Lane2004-09-23
|
* This patch attempts to outline the supported level of SSL within libpq.Bruce Momjian2004-09-23
| | | | | | | | | I haven't mentioned any of ~/.postgresql/{root.crt,postgresql.crt,postresql.key} even though they are checked for in the code, since they do not appear to be supported. I base this on discussions in pgsql-hackers. Dominic Mitchell
* This patch attempts to note the use of the root.crt file in the server.Bruce Momjian2004-09-23
| | | | | | | | Given that PostgreSQL will output a message complaining about it's absence if you're using SSL mode, I feel it's important that it gets a mention in the documentation at some point. Dominic Mitchell
* Update CREATE TABLE AS docs to reflect the fact that CREATE TABLE AS wasNeil Conway2004-09-23
| | | | added to the SQL:2003 standard.
* Update installation docs for PL/Python to note that distutils is nowNeil Conway2004-09-23
| | | | | required. Original patch from James William Pye, editorializing by Neil Conway.
* This patch from Alvaro Herrera adds transaction ID to the list ofNeil Conway2004-09-22
| | | | | | log_line_prefix escapes. The escape sequence used for this is %x. %x previously meant "postmaster et al. stop here" -- this has been renamed to %q.