summaryrefslogtreecommitdiff
path: root/doc/src
AgeCommit message (Collapse)Author
2015-06-13doc: Add note to pg_dump man page about pg_dumpallPeter Eisentraut
suggested by Joshua Drake
2015-06-13Remove stray characterPeter Eisentraut
2015-06-13release notes: consistently name "Alexander Shulgin"Bruce Momjian
Report by Alvaro Herrera
2015-06-13release notes: move/remove/adjust itemsBruce Momjian
Report by Alvaro Herrera
2015-06-13release notes: add accent to Petr Jelínek last nameBruce Momjian
Report by Alvaro Herrera
2015-06-13release notes: remove mention of pg_basebackup non-compatBruce Momjian
Report by Amit Kapila
2015-06-12release notes: add Petr Jelinek to JSON function itemBruce Momjian
Report by Petr Jelinek
2015-06-12release notes: fixes from Fujii MasaoBruce Momjian
Report by Fujii Masao
2015-06-12release notes: reorder hash performance authors, againBruce Momjian
Report by Robert Haas
2015-06-12release notes: reorder sort performance authorsBruce Momjian
Report by Peter Geoghegan
2015-06-12release notes: split apart hash itemsBruce Momjian
Report by Tom Lane, Robert Haas
2015-06-12release notes: add two optimizer itemsBruce Momjian
Report by Tom Lane
2015-06-12Fix alphabetization in catalogs.sgml.Fujii Masao
System catalogs and views should be listed alphabetically in catalog.sgml, but only pg_file_settings view not. This patch also fixes typos in pg_file_settings comments.
2015-06-11release notes: add links to doc sectionsBruce Momjian
2015-06-11release notes: update hash itemBruce Momjian
Report by Tomas Vondra
2015-06-11release notes: move pg_buffercache item to the right sectionBruce Momjian
Report by Amit Langote
2015-06-11release notes: implement suggestionsBruce Momjian
Report by Michael Paquier
2015-06-11release notes: explain meaning of pg_stat_get_snapshot_timestamp()Bruce Momjian
Report by Michael Paquier
2015-06-11release notes: update for pg_basebackup in tar formatBruce Momjian
Report by Amit Kapila
2015-06-11Rename jsonb - text[] operator to #- to avoid ambiguity.Andrew Dunstan
Following recent discussion on -hackers. The underlying function is also renamed to jsonb_delete_path. The regression tests now don't need ugly type casts to avoid the ambiguity, so they are also removed. Catalog version bumped.
2015-06-11First draft of 9.5 release notesBruce Momjian
2015-06-10doc: Use "connections" instead of "slots" to avoid confusionPeter Eisentraut
The text was written before replication slots existed, but now "slot" is best not used for anything else in the space of replication.
2015-06-10doc: Fix typoPeter Eisentraut
2015-06-10doc: Call xmllint for validity also in the fop buildPeter Eisentraut
This was somehow missed in commit 5d93ce2d0c619ba1b408eb749715e7223e23f6ae.
2015-06-10docs: update release note regex suggestionsBruce Momjian
2015-06-09Release notes for 9.4.4, 9.3.9, 9.2.13, 9.1.18, 9.0.22.Tom Lane
2015-06-09First-draft release notes for 9.4.4, 9.3.9, 9.2.13, 9.1.18, 9.0.22.Tom Lane
2015-06-08Fix typosAlvaro Herrera
tablesapce -> tablespace there -> their These were introduced in 72d422a52, so no need to backpatch.
2015-06-07Clarify documentation of jsonb - textAndrew Dunstan
Peter Geoghegan
2015-06-07Desupport jsonb subscript deletion on objectsAndrew Dunstan
Supporting deletion of JSON pairs within jsonb objects using an array-style integer subscript allowed for surprising outcomes. This was mostly due to the implementation-defined ordering of pairs within objects for jsonb. It also seems desirable to make jsonb integer subscript deletion consistent with the 9.4 era general purpose integer subscripting operator for jsonb (although that operator returns NULL when an object is encountered, while we prefer here to throw an error). Peter Geoghegan, following discussion on -hackers.
2015-06-07doc: Fix broken links in FOP buildPeter Eisentraut
FOP doesn't handle links to table rows, so put the link to a cell instead.
2015-06-04doc: Session identifiers truncate, not round, the backend start time.Robert Haas
Joel Jacobson
2015-06-04docs: Fix list of object types pg_table_is_visible() can handle.Robert Haas
Materialized views and foreign tables were missing from the list, probably because they are newer than the other object types that were mentioned. Etsuro Fujita
2015-06-04Remove -i/--ignore-version option from pg_dump, pg_dumpall and pg_restore.Fujii Masao
The commit c22ed3d523782c43836c163c16fa5a7bb3912826 turned the -i/--ignore-version options into no-ops and marked as deprecated. Considering we shipped that in 8.4, it's time to remove all trace of those switches, per discussion. We'd still have to wait a couple releases before it'd be safe to use -i for something else, but it'd be a start.
2015-06-04Fix some issues in pg_class.relminmxid and pg_database.datminmxid documentation.Fujii Masao
- Correct the name of directory which those catalog columns allow to be shrunk. - Correct the name of symbol which is used as the value of pg_class.relminmxid when the relation is not a table. - Fix "ID ID" typo. Backpatch to 9.3 where those cataog columns were introduced.
2015-06-03doc: Fix PDF build with FOPPeter Eisentraut
Because of a bug in the DocBook XSL FO style sheet, an xref to a varlistentry whose term includes an indexterm fails to build. One such instance was introduced in commit 5086dfceba79ecd5d1eb28b8f4ed5221838ff3a6. Fix by adding the upstream bug fix to our customization layer.
2015-06-03Minor improvement to txid_current() documentation.Fujii Masao
Michael Paquier, reviewed by Christoph Berg and Naoya Anzai
2015-06-01Release notes for 9.4.3, 9.3.8, 9.2.12, 9.1.17, 9.0.21.Tom Lane
Also sneak entries for commits 97ff2a564 et al into the sections for the previous releases in the relevant branches. Those fixes did go out in the previous releases, but missed getting documented.
2015-05-31Rename jsonb_replace to jsonb_set and allow it to add new valuesAndrew Dunstan
The function is given a fourth parameter, which defaults to true. When this parameter is true, if the last element of the path is missing in the original json, jsonb_set creates it in the result and assigns it the new value. If it is false then the function does nothing unless all elements of the path are present, including the last. Based on some original code from Dmitry Dolgov, heavily modified by me. Catalog version bumped.
2015-05-28Remove *pgaudit* references also.Stephen Frost
Fixes the docs build.
2015-05-28Finish removing pg_auditStephen Frost
2015-05-25Explain CHECK constraint handling in postgres_fdw's IMPORT FOREIGN SCHEMA.Tom Lane
The existing documentation could easily be misinterpreted, and it failed to explain the inconsistent-evaluation hazard that deterred us from supporting automatic importing of check constraints. Revise it. Etsuro Fujita, further expanded by me
2015-05-24Remove no-longer-required function declarations.Tom Lane
Remove a bunch of "extern Datum foo(PG_FUNCTION_ARGS);" declarations that are no longer needed now that PG_FUNCTION_INFO_V1(foo) provides that. Some of these were evidently missed in commit e7128e8dbb305059, but others were cargo-culted in in code added since then. Possibly that can be blamed in part on the fact that we'd not fixed relevant documentation examples, which I've now done.
2015-05-23Still more fixes for lossy-GiST-distance-functions patch.Tom Lane
Fix confusion in documentation, substantial memory leakage if float8 or float4 are pass-by-reference, and assorted comments that were obsoleted by commit 98edd617f3b62a02cb2df9b418fcc4ece45c7ec0.
2015-05-23Remove the new UPSERT command tag and use INSERT instead.Andres Freund
Previously, INSERT with ON CONFLICT DO UPDATE specified used a new command tag -- UPSERT. It was introduced out of concern that INSERT as a command tag would be a misrepresentation for ON CONFLICT DO UPDATE, as some affected rows may actually have been updated. Alvaro Herrera noticed that the implementation of that new command tag was incomplete; in subsequent discussion we concluded that having it doesn't provide benefits that are in line with the compatibility breaks it requires. Catversion bump due to the removal of PlannedStmt->isUpsert. Author: Peter Geoghegan Discussion: 20150520215816.GI5885@postgresql.org
2015-05-22Minor enhancement of readability of ALTER TABLE syntax in the doc.Fujii Masao
Fabrízio Mello
2015-05-21Correct two mistakes in the ALTER FOREIGN TABLE reference page.Robert Haas
Etsuro Fujita
2015-05-21Correct the names of pgstattuple_approx output columns in the doc.Fujii Masao
2015-05-20Collection of typo fixes.Heikki Linnakangas
Use "a" and "an" correctly, mostly in comments. Two error messages were also fixed (they were just elogs, so no translation work required). Two function comments in pg_proc.h were also fixed. Etsuro Fujita reported one of these, but I found a lot more with grep. Also fix a few other typos spotted while grepping for the a/an typos. For example, "consists out of ..." -> "consists of ...". Plus a "though"/ "through" mixup reported by Euler Taveira. Many of these typos were in old code, which would be nice to backpatch to make future backpatching easier. But much of the code was new, and I didn't feel like crafting separate patches for each branch. So no backpatching.
2015-05-19Last-minute updates for release notes.Tom Lane
Revise description of CVE-2015-3166, in line with scaled-back patch. Change release date. Security: CVE-2015-3166