1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-03 01:21:48 +03:00

4432 Commits

Author SHA1 Message Date
Bruce Momjian
c7fc2ccf63 Add regression tests for CSV and \., and add automatic quoting of a
single column dump that has a \. value, so the load works properly.  I
also added documentation describing this issue.

Backpatch to 8.1.X.
2005-12-28 05:38:27 +00:00
Bruce Momjian
f545a05704 Update interval documenation to mention the storage system used. 2005-12-22 21:45:30 +00:00
Bruce Momjian
14e9a17f0a Add documentation example of using interval multiplication with 'days'.
Backpatch to 8.1.X.
2005-12-21 23:23:09 +00:00
Bruce Momjian
2469b99665 Add additional example for interval multiplication.
Fix example for day and hours interval subtraction for new computation
method.

Update interval examples to display zero seconds, which is our default.

Backpatch to 8.1.X.
2005-12-21 16:02:44 +00:00
Tom Lane
a2fc8ca797 Add release notes for back branches (7.3 and up).
Also minor improvements to 8.1.1 release notes.
2005-12-09 20:40:26 +00:00
Bruce Momjian
24cea65634 Add documentation about the behavior of BEFORE triggers and referential
integrity actions.

Stephan Szabo
2005-12-09 19:39:43 +00:00
Bruce Momjian
2eed0afc0c Remove mention that history is _now_ automatically saved on exit. It
has been that way for a long time.
2005-12-09 19:19:28 +00:00
Tom Lane
9af49fcf87 Fix broken markup. 2005-12-09 18:07:57 +00:00
Bruce Momjian
df56447077 Release note wording improvements. 2005-12-08 23:22:38 +00:00
Bruce Momjian
d4fa3a8c78 Wrap UTF-8 paragraph. 2005-12-08 22:45:51 +00:00
Bruce Momjian
9f389f7db9 Update wording of translation bug item. 2005-12-08 22:36:52 +00:00
Bruce Momjian
96a1732710 Stamp 8.1.1. 2005-12-08 22:31:10 +00:00
Bruce Momjian
4bafc1202a Update release notes for 8.1.1. 2005-12-08 22:22:27 +00:00
Bruce Momjian
5e6e9526c9 Update 8.1.X FAQs. 2005-12-08 21:37:54 +00:00
Bruce Momjian
6c8e20ad1b there's a paragraph in the ALTER TABLE reference page that reads:
DROP CONSTRAINT

    This form drops constraints on a table. Currently, constraints on tables
    are not required to have unique names, so there may be more than one
    constraint matching the specified name. All matching constraints will be
    dropped.

To my knowledge, it is no longer possible to create constraints with the
same name for the same relation. When you create a constraint and specify
the same name explictly, an error is raised. Implicit constraint creation
won't choose an existing name either and up to now you could not rename a
constraint. Renaming works with the patch I sent in a few hours ago but this
patch as well won't allow constraints with identical names on the same
relation.

The attached patch thus removes the note in the docs.

Joachim Wieland
2005-12-08 21:35:41 +00:00
Bruce Momjian
8c52b34bc7 Remove empty heading row in error table. 2005-12-08 21:23:13 +00:00
Bruce Momjian
6ae578d261 Add "Constant" column to error code table.
Also, better mark section headings.

kdio@uenf.br
2005-12-08 21:01:55 +00:00
Peter Eisentraut
ff4cc77bca Documentation fix: s/event_object_name/event_object_table/g 2005-12-08 20:46:54 +00:00
Bruce Momjian
00b013b56e Add documentation about the inability of plpsql to use parameter names
that are the same as column names used in the function.
2005-12-08 18:02:10 +00:00
Tom Lane
5ca6ab404d Fix incorrect SPI example, per Yoshihisa Nakano. 2005-12-07 15:39:32 +00:00
Bruce Momjian
95f1f192e8 Improve lazy vacuum wording. 2005-12-07 14:36:08 +00:00
Bruce Momjian
5db90cc645 Clarify vacuum lazy can shrink a file under certain circumstances. 2005-12-07 05:36:08 +00:00
Bruce Momjian
c90f02316e Update iconv wording, per Peter. 2005-12-06 21:01:32 +00:00
Bruce Momjian
494d1f1497 Highlight diff idea for iconv. 2005-12-06 20:26:02 +00:00
Bruce Momjian
34dc4228cb iconv uses UTF-8, not UTF8. 2005-12-06 20:19:38 +00:00
Bruce Momjian
ead868059b Document method of removing invalid UTF8 escape sequences from dump
file.  Backpatch to 8.1.X.

Paul Lindner
2005-12-06 19:27:09 +00:00
Bruce Momjian
0ebd65ddd4 Since my name has a non-ascii-letter in it, it's often spelled wrong. In
the latest release notes there is a latin1 character that shouldn't be
there so I made a patch to fix that. This patch also fixes some old
entries that uses o instead of ö (which is also wrong but not as
bad as including a latin1 character in the sgml file).

Dennis Bj?rklund
2005-12-06 18:43:40 +00:00
Bruce Momjian
dfdec60447 Allow to_char(interval) and to_char(time) to use AM/PM specifications.
Map them to a single day, so '30 hours' is 'AM'.

Have to_char(interval) and to_char(time) use "HH", "HH12" as 12-hour
intervals, rather than bypass and print the full interval hours.  This
is neeeded because to_char(time) is mapped to interval in this function.
Intervals should use "HH24", and document suggestion.

Allow "D" format specifiers for interval/time.
2005-12-03 16:45:23 +00:00
Tom Lane
4ed2e803ef Fix obsolete description of -h option, per Andreas Schmidt. 2005-12-02 23:13:53 +00:00
Neil Conway
bc0b56c0fe Fix typo in PL/PgSQL documentation, per Chris KL. 2005-12-01 10:38:09 +00:00
Bruce Momjian
fc9b777a79 Improve documentation for COALESCE and NULLIF. Add references for NVL
and IFNULL.

Backpatch to 8.1.X.
2005-11-28 23:19:03 +00:00
Bruce Momjian
1012a93264 Update Japanese FAQ.
J.Kuwamura
2005-11-18 00:41:26 +00:00
Bruce Momjian
1cb945bd50 Properly document return value of strpos(). 2005-11-16 03:56:35 +00:00
Bruce Momjian
75a429463a Update FAQ for most recent release as 8.1. 2005-11-05 01:35:18 +00:00
Tom Lane
9ba4c42401 Yet another supported-platforms update. 2005-11-05 00:04:04 +00:00
Tom Lane
fd68553860 Editorial review for partitioning/constraint exclusion documentation. 2005-11-04 23:53:18 +00:00
Peter Eisentraut
39dfbe5791 Spellchecking run, final cleanups 2005-11-04 23:14:02 +00:00
Bruce Momjian
1630571a04 Update release notes for 8.1. 2005-11-04 22:21:33 +00:00
Tom Lane
e47ea0566c Update supported-platforms list. 2005-11-04 16:15:20 +00:00
Tom Lane
03381695c6 Avoid referring to a specific version of the SQL standard except where
necessary, and be careful to refer to the right version where it is
useful to do so.  This partially reverts an ill-considered search and
replace from a few months ago.
2005-11-04 02:56:31 +00:00
Neil Conway
8bd1cbb86d Some minor improvements to the CE docs. Also fix a bit of SGML markup
elsewhere.
2005-11-03 00:51:43 +00:00
Bruce Momjian
ced9dd3699 Add Tomoaki Sato to pgbench changes in release notes. 2005-11-02 14:08:43 +00:00
Neil Conway
eddcd492fe Add some documentation for constraint exclusion and basic partitioning.
From Simon Riggs; cleanup and editorialization by Neil Conway.
2005-11-01 23:19:05 +00:00
Tom Lane
b524cb36ac Make an editorial pass over the reference pages. 2005-11-01 21:09:51 +00:00
Tom Lane
37a4232a0c Update supported-platforms entry for Tru64. 2005-10-31 21:12:35 +00:00
Bruce Momjian
ee72793a91 Mention in the docs that temporary/non-temp tables can not share
referential integrity relationships.
2005-10-31 18:13:52 +00:00
Tom Lane
90456d1303 Update supported-platforms list. 2005-10-30 19:21:42 +00:00
Bruce Momjian
9c67981683 Fix psql ref typo.
Andreas Seltenreich
2005-10-30 03:01:49 +00:00
Tom Lane
a7335a3401 Update supported-platforms list. 2005-10-28 20:01:40 +00:00
Tom Lane
65a99590ab Fix broken markup. 2005-10-28 20:00:03 +00:00