Bruce Momjian
c75c372c58
Fix typo in configuration docs.
...
Devrim GUNDUZ
20 years ago
Bruce Momjian
3bf6284f10
Update PL/pgSQL trigger example to be clearer about how to "merge" data
...
into a table.
Jim C. Nasby
20 years ago
Bruce Momjian
4a651c9705
Update EXPLAIN wording for GEQO usage.
20 years ago
Bruce Momjian
936433ba53
Doc patch that adds an example of a correllated UPDATE.
...
David Fetter
20 years ago
Bruce Momjian
b148ce8a4a
Clarify STABLE function documentation to highlight how such functions
...
can be optimized.
20 years ago
Bruce Momjian
2e2c4f424f
Clarify use of btree indexes for ILIKE and ~*.
20 years ago
Tom Lane
34b0ac6ada
Remove extraneous backslash from 'fixseq.sql' example --- mea culpa
...
certainly. Per report from George Woodring.
20 years ago
Tom Lane
68f4ed462a
Release-note updates and copy editing.
20 years ago
Bruce Momjian
ffc7186004
New pgcrypto item wording.
20 years ago
Bruce Momjian
61180e80d4
Wording improvements.
20 years ago
Bruce Momjian
045de2d865
Improve markup.
20 years ago
Bruce Momjian
e0f1f8ad0b
Update release notes for 8.1.X, 8.0.X, 7.4.X, and 7.3.X.
20 years ago
Bruce Momjian
f54a68d24a
Stamp release 8.1.2.
20 years ago
Bruce Momjian
8136eca59c
Remove a space that incorrectly precedes a comma in the PL/pgSQL
...
documentation.
Michael Fuhr
20 years ago
Bruce Momjian
c54fee814f
Update COPY CSV \. wording for externally created files.
20 years ago
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.
20 years ago
Bruce Momjian
f545a05704
Update interval documenation to mention the storage system used.
20 years ago
Bruce Momjian
14e9a17f0a
Add documentation example of using interval multiplication with 'days'.
...
Backpatch to 8.1.X.
20 years ago
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.
20 years ago
Tom Lane
a2fc8ca797
Add release notes for back branches (7.3 and up).
...
Also minor improvements to 8.1.1 release notes.
20 years ago
Bruce Momjian
24cea65634
Add documentation about the behavior of BEFORE triggers and referential
...
integrity actions.
Stephan Szabo
20 years ago
Bruce Momjian
2eed0afc0c
Remove mention that history is _now_ automatically saved on exit. It
...
has been that way for a long time.
20 years ago
Tom Lane
9af49fcf87
Fix broken markup.
20 years ago
Bruce Momjian
df56447077
Release note wording improvements.
20 years ago
Bruce Momjian
d4fa3a8c78
Wrap UTF-8 paragraph.
20 years ago
Bruce Momjian
9f389f7db9
Update wording of translation bug item.
20 years ago
Bruce Momjian
96a1732710
Stamp 8.1.1.
20 years ago
Bruce Momjian
4bafc1202a
Update release notes for 8.1.1.
20 years ago
Bruce Momjian
5e6e9526c9
Update 8.1.X FAQs.
20 years ago
Bruce Momjian
e2d7e03fb2
FAQ_AIX in 8.1.0 contains outdated information about how to deal with
...
postgres problems due to readline. The attached patch replaces that
section of it with better ways of handling the problem.
Seneca Cunningham
20 years ago
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
20 years ago
Bruce Momjian
8c52b34bc7
Remove empty heading row in error table.
20 years ago
Bruce Momjian
6ae578d261
Add "Constant" column to error code table.
...
Also, better mark section headings.
kdio@uenf.br
20 years ago
Peter Eisentraut
ff4cc77bca
Documentation fix: s/event_object_name/event_object_table/g
20 years ago
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.
20 years ago
Tom Lane
5ca6ab404d
Fix incorrect SPI example, per Yoshihisa Nakano.
20 years ago
Bruce Momjian
95f1f192e8
Improve lazy vacuum wording.
20 years ago
Bruce Momjian
5db90cc645
Clarify vacuum lazy can shrink a file under certain circumstances.
20 years ago
Bruce Momjian
c90f02316e
Update iconv wording, per Peter.
20 years ago
Bruce Momjian
494d1f1497
Highlight diff idea for iconv.
20 years ago
Bruce Momjian
34dc4228cb
iconv uses UTF-8, not UTF8.
20 years ago
Bruce Momjian
ead868059b
Document method of removing invalid UTF8 escape sequences from dump
...
file. Backpatch to 8.1.X.
Paul Lindner
20 years ago
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
20 years ago
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.
20 years ago
Tom Lane
4ed2e803ef
Fix obsolete description of -h option, per Andreas Schmidt.
20 years ago
Neil Conway
bc0b56c0fe
Fix typo in PL/PgSQL documentation, per Chris KL.
20 years ago
Bruce Momjian
fc9b777a79
Improve documentation for COALESCE and NULLIF. Add references for NVL
...
and IFNULL.
Backpatch to 8.1.X.
20 years ago
Bruce Momjian
1012a93264
Update Japanese FAQ.
...
J.Kuwamura
20 years ago
Bruce Momjian
1cb945bd50
Properly document return value of strpos().
20 years ago
PostgreSQL Daemon
2a80c3c4dc
Tag everything for 8.1.0 ... Finally, a relesae on scheduale!!
20 years ago