Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Update pg_ctl docs to explain server output behavior differences on | Bruce Momjian | 2010-06-22 | |
| | | | | win32 and non-win32 platforms. | |||
* | Deprecate the use of => as an operator name. | Robert Haas | 2010-06-22 | |
| | | | | | | | | | | In HEAD, emit a warning when an operator named => is defined. In both HEAD and the backbranches (except in 8.2, where contrib modules do not have documentation), document that hstore's text => text operator may be removed in a future release, and encourage the use of the hstore(text, text) function instead. This function only exists in HEAD (previously, it was called tconvert), so backpatch it back to 8.2, when hstore was added. Per discussion. | |||
* | Minor markup improvements for Hot Standby documentation. | Robert Haas | 2010-06-22 | |
| | ||||
* | Rename hstore => text[] operator to % | Robert Haas | 2010-06-18 | |
| | | | | | This is not yet in any released version, so we still have the option to change the name. We may want to reserve the token => in a future release. | |||
* | Add missing close brackets in old-style COPY syntax diagram. | Tom Lane | 2010-06-17 | |
| | | | | Spotted by Evan Carroll. | |||
* | Fix typo, init => int, per KOIZUMI Satoru. | Tom Lane | 2010-06-17 | |
| | ||||
* | Document that receive location can rewind if replication restarts. | Robert Haas | 2010-06-17 | |
| | | | | Fujii Masao, with some further wordsmithing by me. | |||
* | Update doc description for 9.0 release note item: | Bruce Momjian | 2010-06-16 | |
| | | | | | Have <command>SELECT</> and <command>CREATE TABLE AS</> return row counts to the client | |||
* | 9.0 release notes updates. | Bruce Momjian | 2010-06-16 | |
| | | | | Josh Berkus | |||
* | Remove perl symbol table additions for plperl functions, and mention of it | Andrew Dunstan | 2010-06-16 | |
| | | | | in the release notes, as it is not apparently providing anything useful. | |||
* | Add notes that CREATE/DROP CONVERSION is similar to CREATE/DROP | Peter Eisentraut | 2010-06-16 | |
| | | | | TRANSLATION in the SQL standard. | |||
* | Change the interpretation of the primary_key_attnums parameter of | Tom Lane | 2010-06-15 | |
| | | | | | | | | | | dblink_build_sql_insert() and related functions. Now the column numbers are treated as logical not physical column numbers. This will provide saner behavior in the presence of dropped columns; furthermore, if we ever get around to allowing rearrangement of logical column ordering, the original definition would become nearly untenable from a usability standpoint. Per recent discussion of dblink's handling of dropped columns. Not back-patched for fear of breaking existing applications. | |||
* | Clarify SELECT FOR UPDATE behavior in docs. | Bruce Momjian | 2010-06-15 | |
| | ||||
* | Remove hstore's text[] => text[] operator. | Robert Haas | 2010-06-15 | |
| | | | | | This is not yet in any released version, so we still have the option to backtrack. Instead, document hstore(text[], text[]). Per discussion. | |||
* | Document new 9.0 behavior of ANALYZE on inheritance hierarchies. | Robert Haas | 2010-06-15 | |
| | | | | | | In particular, note that autovacuum does not yet understand that it might need to vacuum inheritance parents as a result of changes to the child tables. | |||
* | Add new GUC categories corresponding to sections in docs, and move | Itagaki Takahiro | 2010-06-15 | |
| | | | | | | | description for vacuum_defer_cleanup_age to the correct category. Sections in postgresql.conf are also sorted in the same order with docs. Per gripe by Fujii Masao, suggestion by Heikki Linnakangas, and patch by me. | |||
* | Fix doc plperl doc with is -> are change. | Bruce Momjian | 2010-06-14 | |
| | ||||
* | Docs for pg_archivecleanup | Simon Riggs | 2010-06-14 | |
| | ||||
* | Fix misplaced modifier. | Robert Haas | 2010-06-14 | |
| | | | | As suggested by Ian Barwick. | |||
* | Fix typo. | Robert Haas | 2010-06-14 | |
| | ||||
* | postgres.txt should get cleaned by 'make clean'. | Tom Lane | 2010-06-12 | |
| | ||||
* | Remove lynx -stdin flag for postgres.text. | Bruce Momjian | 2010-06-12 | |
| | ||||
* | Add SGML Makefile rule for single-page text, postgres.txt. | Bruce Momjian | 2010-06-12 | |
| | ||||
* | Add space between after ">" in ">$@" in SGML Makefile, for clarity. | Bruce Momjian | 2010-06-12 | |
| | ||||
* | Add target to build HTML documentation as single page | Peter Eisentraut | 2010-06-12 | |
| | ||||
* | Use "replication" as the database name when constructing a connection | Heikki Linnakangas | 2010-06-11 | |
| | | | | | | | | string for a streaming replication connection. It's ignored by the server, but allows libpq to pick up the password from .pgpass where "replication" is specified as the database name. Patch by Fujii Masao per Tom's suggestion, with some wording changes by me. | |||
* | Update text of 9.0 release notes | Bruce Momjian | 2010-06-10 | |
| | | | | Josh Berkus | |||
* | Rename restartpoint_command to archive_cleanup_command. | Itagaki Takahiro | 2010-06-10 | |
| | ||||
* | Return NULL instead of 0/0 in pg_last_xlog_receive_location() and | Heikki Linnakangas | 2010-06-10 | |
| | | | | | | pg_last_xlog_replay_location(). Per Robert Haas's suggestion, after Itagaki Takahiro pointed out an issue in the docs. Also, some wording changes in the docs by me. | |||
* | Update ALTER TABLE docs to account for exclusion and deferrable uniqueness | Alvaro Herrera | 2010-06-09 | |
| | | | | | | constraints Dean Rasheed | |||
* | Add index entry for ::, per complaint from John Gage. | Alvaro Herrera | 2010-06-09 | |
| | ||||
* | Make procedural language handler reference C-language function docs. | Robert Haas | 2010-06-08 | |
| | | | | Based on suggestions from Jonathan Leto and Joshua Tolley. | |||
* | Ensure default-only storage parameters for TOAST relations | Itagaki Takahiro | 2010-06-07 | |
| | | | | | | | | | | | | | | | | | | to be initialized with proper values. Affected parameters are fillfactor, analyze_threshold, and analyze_scale_factor. Especially uninitialized fillfactor caused inefficient page usage because we built a StdRdOptions struct in which fillfactor is zero if any reloption is set for the toast table. In addition, we disallow toast.autovacuum_analyze_threshold and toast.autovacuum_analyze_scale_factor because we didn't actually support them; they are always ignored. Report by Rumko on pgsql-bugs on 12 May 2010. Analysis by Tom Lane and Alvaro Herrera. Patch by me. Backpatch to 8.4. | |||
* | Replace "slave" to "standby" in documentation for consistent terminology. | Itagaki Takahiro | 2010-06-07 | |
| | | | | | Almost all of the terms in docs and messages were replaced, but still remains in a few comments and README files in codes. | |||
* | Improve our explanation of the OVERLAPS operator. | Tom Lane | 2010-06-05 | |
| | | | | Per gripe from Frank van Vugt. | |||
* | Add current WAL end (as seen by walsender, ie, GetWriteRecPtr() result) | Tom Lane | 2010-06-03 | |
| | | | | | | | | and current server clock time to SR data messages. These are not currently used on the slave side but seem likely to be useful in future, and it'd be better not to change the SR protocol after release. Per discussion. Also do some minor code review and cleanup on walsender.c, and improve the protocol documentation. | |||
* | Remove link that breaks HISTORY file generation. | Tom Lane | 2010-06-03 | |
| | ||||
* | Fix CREATE TRIGGER release mention, WHERE -> WHEN. | Bruce Momjian | 2010-06-03 | |
| | ||||
* | Update 9.0 release notes to current. | Bruce Momjian | 2010-06-03 | |
| | ||||
* | Markup fix. | Bruce Momjian | 2010-06-03 | |
| | ||||
* | Document regexp_matches() better and show example of single-row usage. | Bruce Momjian | 2010-06-03 | |
| | ||||
* | Document use of C++ for extension use. | Bruce Momjian | 2010-06-03 | |
| | ||||
* | Document that citext operators must be in the current search path. | Bruce Momjian | 2010-06-03 | |
| | ||||
* | Clarify array generate_subscripts() documentation example. | Bruce Momjian | 2010-06-03 | |
| | | | | Tim Landscheidt | |||
* | Document that && geometric operator is true even if only a point | Bruce Momjian | 2010-06-03 | |
| | | | | | | overlaps. David Fetter | |||
* | Update C++ release note item wording. | Bruce Momjian | 2010-06-01 | |
| | ||||
* | Comment out C++ docs for later user. Tone down C++ compatibility in 9.0 | Bruce Momjian | 2010-06-01 | |
| | | | | release notes. | |||
* | Mention palloc/pfree for C++ memory allocation in docs. | Bruce Momjian | 2010-06-01 | |
| | ||||
* | Fix SGML markup for tag title. | Bruce Momjian | 2010-06-01 | |
| | ||||
* | Add documentation section "Using C++ for Extensibility". | Bruce Momjian | 2010-06-01 | |
| | | | | Craig Ringer |