]> git.ipfire.org Git - thirdparty/postgresql.git/log
thirdparty/postgresql.git
20 years agoDocument the "register" and "unregister" pg_ctl subcommands, for use on
Neil Conway [Mon, 21 Feb 2005 02:14:34 +0000 (02:14 +0000)] 
Document the "register" and "unregister" pg_ctl subcommands, for use on
Windows. Patch from Magnus Hagander.

20 years agoNew arrangement to always let the bgwriter do checkpoints broke
Tom Lane [Sat, 19 Feb 2005 23:16:27 +0000 (23:16 +0000)] 
New arrangement to always let the bgwriter do checkpoints broke
CHECKPOINT and some other commands in the context of a standalone
backend.  Allow a standalone backend to do its own checkpoints.

20 years agoEnsure that the resolved datatype of any unknown Param is propagated
Tom Lane [Sat, 19 Feb 2005 19:33:23 +0000 (19:33 +0000)] 
Ensure that the resolved datatype of any unknown Param is propagated
into the sub-SELECT targetlist when it appears in the context
INSERT INTO foo SELECT $1 ...  Per report from Abhijit Menon-Sen.

20 years agoALTER LANGUAGE RENAME has never worked. Per Sergey Yatskevich.
Tom Lane [Mon, 14 Feb 2005 06:17:59 +0000 (06:17 +0000)] 
ALTER LANGUAGE RENAME has never worked.  Per Sergey Yatskevich.

20 years agoPrint file name and errno string on rmtree failure.
Bruce Momjian [Sun, 13 Feb 2005 16:50:54 +0000 (16:50 +0000)] 
Print file name and errno string on rmtree failure.

Backpatch to 8.0.X.

20 years agoTranslation updates
Peter Eisentraut [Fri, 11 Feb 2005 11:53:32 +0000 (11:53 +0000)] 
Translation updates

20 years agoUpdate to Russian FAQ, HEAD and 8.0.X.
Bruce Momjian [Fri, 11 Feb 2005 04:54:05 +0000 (04:54 +0000)] 
Update to Russian FAQ, HEAD and 8.0.X.

20 years agoMention that some psql environment variables come from libpq and note
Bruce Momjian [Fri, 11 Feb 2005 04:19:18 +0000 (04:19 +0000)] 
Mention that some psql environment variables come from libpq and note
more variables can be found in the libpq manual section.

Mention .pgpass in the psql manual page section dealing with connection
parameters and point to the libpq section for more details.

Backpatch to 8.0.X.

20 years agoFix SPI cursor support to allow scanning the results of utility commands
Tom Lane [Thu, 10 Feb 2005 20:36:49 +0000 (20:36 +0000)] 
Fix SPI cursor support to allow scanning the results of utility commands
that return tuples (such as EXPLAIN).  Per gripe from Michael Fuhr.
Side effect: fix an old bug that unintentionally disabled backward scans
for all SPI-created cursors.

20 years agoFixed more parsing bugs in other CREATE statements.
Michael Meskes [Thu, 10 Feb 2005 08:07:46 +0000 (08:07 +0000)] 
Fixed more parsing bugs in other CREATE statements.

20 years agoUpdate pginstaller URL to http://www.postgresql.org/ftp/win32/.
Bruce Momjian [Thu, 10 Feb 2005 04:53:11 +0000 (04:53 +0000)] 
Update pginstaller URL to http://www.postgresql.org/ftp/win32/.

Backpatch to 8.0.X.

20 years agoALTER TABLE ADD COLUMN exhibits a significant memory leak when adding a
Neil Conway [Wed, 9 Feb 2005 23:27:24 +0000 (23:27 +0000)] 
ALTER TABLE ADD COLUMN exhibits a significant memory leak when adding a
column with a default expression. In that situation, we need to rewrite
the heap relation. To evaluate the new default expression, we use
ExecEvalExpr(); however, this can allocate memory in the current memory
context, and ATRewriteTable() does not switch out of the active portal's
heap memory context. The end result is a rather large memory leak (on
the order of gigabytes for a reasonably sized table).

This patch changes ATRewriteTable() to switch to the per-tuple memory
context before beginning the per-tuple loop. It also removes an explicit
heap_freetuple() in the loop, since that is no longer needed.

In an unrelated change, I noticed the code was scanning through the
attributes of the new tuple descriptor for each tuple of the old table.
I changed this to use precomputation, which should slightly speed up
the loop.

Thanks to steve@deefs.net for reporting the leak.

20 years agoFixed bug in parsing of CREATE AS statement.
Michael Meskes [Wed, 9 Feb 2005 11:28:21 +0000 (11:28 +0000)] 
Fixed bug in parsing of CREATE AS statement.

20 years agoIf we're gonna check for array overrun, we really should do so before
Tom Lane [Tue, 8 Feb 2005 18:21:59 +0000 (18:21 +0000)] 
If we're gonna check for array overrun, we really should do so before
overrunning the array, not after.

20 years agoPrevent 4 more buffer overruns in the PL/PgSQL parser. This is just a
Neil Conway [Mon, 7 Feb 2005 03:52:22 +0000 (03:52 +0000)] 
Prevent 4 more buffer overruns in the PL/PgSQL parser. This is just a
minimally-invasive fix for stable branches; a cleaner fix will be
committed to HEAD soon.

20 years agoBetter late than never: document that the GiST API changed in 8.0 in the
Neil Conway [Sun, 6 Feb 2005 22:36:10 +0000 (22:36 +0000)] 
Better late than never: document that the GiST API changed in 8.0 in the
"incompatibilities" section of the release notes.

20 years agoDocument array behavior for out-of-range subscripts.
Tom Lane [Sun, 6 Feb 2005 20:59:37 +0000 (20:59 +0000)] 
Document array behavior for out-of-range subscripts.

20 years agoRepair CLUSTER failure after ALTER TABLE SET WITHOUT OIDS. Turns out
Tom Lane [Sun, 6 Feb 2005 20:19:24 +0000 (20:19 +0000)] 
Repair CLUSTER failure after ALTER TABLE SET WITHOUT OIDS.  Turns out
there are corner cases involving dropping toasted columns in which the
previous coding would fail, too: the new version of the table might not
have any TOAST table, but we'd still propagate possibly-wide values of
dropped columns forward.

20 years agoFix minor thinko in logic to set dump order when dumping from a pre-7.3
Tom Lane [Thu, 3 Feb 2005 23:39:21 +0000 (23:39 +0000)] 
Fix minor thinko in logic to set dump order when dumping from a pre-7.3
database: aggregates should be dumped in the same pass as operators,
not in the same pass as functions.

20 years agoEnsure that all details of the ARC algorithm are hidden within freelist.c.
Tom Lane [Thu, 3 Feb 2005 23:30:12 +0000 (23:30 +0000)] 
Ensure that all details of the ARC algorithm are hidden within freelist.c.
This refactoring does not change any algorithms or data structures, just
remove visibility of the ARC datastructures from other source files.

20 years agoImprove performance of fmgr.c calling routines for cases with more than
Tom Lane [Wed, 2 Feb 2005 22:40:19 +0000 (22:40 +0000)] 
Improve performance of fmgr.c calling routines for cases with more than
two arguments.  Per suggestions from A. Ogawa.

20 years agoAdjust constant-folding of CASE expressions so that the simple comparison
Tom Lane [Wed, 2 Feb 2005 21:49:49 +0000 (21:49 +0000)] 
Adjust constant-folding of CASE expressions so that the simple comparison
form of CASE (eg, CASE 0 WHEN 1 THEN ...) can be constant-folded as it
was in 7.4.  Also, avoid constant-folding result expressions that are
certainly unreachable --- the former coding was a bit cavalier about this
and could generate unexpected results for all-constant CASE expressions.
Add regression test cases.  Per report from Vlad Marchenko.

20 years agoImprove wording of to_char() change in 8.1:
Bruce Momjian [Wed, 2 Feb 2005 18:17:34 +0000 (18:17 +0000)] 
Improve wording of to_char() change in 8.1:

      The 8.1 release will remove the <function>to_char()</> function
      for intervals.

20 years agoBackpatch FAQ to 8.0.X.
Bruce Momjian [Wed, 2 Feb 2005 17:44:51 +0000 (17:44 +0000)] 
Backpatch FAQ to 8.0.X.

20 years agoBackpatch FAQ to 8.0.X.
Bruce Momjian [Wed, 2 Feb 2005 13:42:02 +0000 (13:42 +0000)] 
Backpatch FAQ to 8.0.X.

20 years agoFix a bug induced by the list-rewrite that resulted in incrementing the
Neil Conway [Tue, 1 Feb 2005 23:29:13 +0000 (23:29 +0000)] 
Fix a bug induced by the list-rewrite that resulted in incrementing the
command counter more than necessary. Per report from Michael Fuhr.

20 years agoAdjust estimate_num_groups() to not clamp per-relation group count
Tom Lane [Tue, 1 Feb 2005 23:09:00 +0000 (23:09 +0000)] 
Adjust estimate_num_groups() to not clamp per-relation group count
estimate to less than the number of values estimated for any one grouping
Var, as suggested by Manfred.  This is intuitively right, and what's
more it puts the plan choices in the subselect regression test back the
way they were before ...

20 years agoAdjust plpgsql to allow assignment to an element of an array that is
Tom Lane [Tue, 1 Feb 2005 19:35:29 +0000 (19:35 +0000)] 
Adjust plpgsql to allow assignment to an element of an array that is
initially NULL.  For 8.0 we changed the main executor to have this
behavior in an UPDATE of an array column, but plpgsql's equivalent case
was overlooked.  Per report from Sven Willenberger.

20 years agoBackpatch FAQ changes to 8.0.X.
Bruce Momjian [Tue, 1 Feb 2005 02:42:03 +0000 (02:42 +0000)] 
Backpatch FAQ changes to 8.0.X.

20 years agoSync inet formatting code with recent BIND releases. In particular,
Tom Lane [Tue, 1 Feb 2005 00:59:53 +0000 (00:59 +0000)] 
Sync inet formatting code with recent BIND releases.  In particular,
fix bug with inconsistent selection of default mask length for
"class D" addresses.  Per report from Steve Atkins.

20 years agoRecommend security@postgresql.org as the contact point for security-related bugs. REL8_0_1
Tom Lane [Sun, 30 Jan 2005 21:31:57 +0000 (21:31 +0000)] 
Recommend security@postgresql.org as the contact point for security-related bugs.

20 years agoStamp 8.0 branch as 8.0.1.
Tom Lane [Sun, 30 Jan 2005 19:17:49 +0000 (19:17 +0000)] 
Stamp 8.0 branch as 8.0.1.

20 years agoTranslation updates
Peter Eisentraut [Sun, 30 Jan 2005 15:47:30 +0000 (15:47 +0000)] 
Translation updates

20 years agoBackpatch FAQ to 8.0.X.
Bruce Momjian [Sun, 30 Jan 2005 04:45:23 +0000 (04:45 +0000)] 
Backpatch FAQ to 8.0.X.

20 years agoFAQ markup fixes.
Bruce Momjian [Sun, 30 Jan 2005 04:44:25 +0000 (04:44 +0000)] 
FAQ markup fixes.

20 years agoBackpatch FAQ to 8.0.X.
Bruce Momjian [Sun, 30 Jan 2005 04:26:40 +0000 (04:26 +0000)] 
Backpatch FAQ to 8.0.X.

20 years agoBackpatch FAQ changes to 8.0.X.
Bruce Momjian [Sun, 30 Jan 2005 04:22:53 +0000 (04:22 +0000)] 
Backpatch FAQ changes to 8.0.X.

20 years agoWe haven't had a fixed limit on rule recursion depth since 7.3 ...
Tom Lane [Sat, 29 Jan 2005 23:45:53 +0000 (23:45 +0000)] 
We haven't had a fixed limit on rule recursion depth since 7.3 ...
but the documentation still said so.

20 years agoMake sure contrib C functions are marked strict where needed.
Tom Lane [Sat, 29 Jan 2005 22:35:17 +0000 (22:35 +0000)] 
Make sure contrib C functions are marked strict where needed.
Kris Jurka

20 years agoAdd documentation for format_type(), which somehow escaped it before.
Tom Lane [Fri, 28 Jan 2005 23:13:26 +0000 (23:13 +0000)] 
Add documentation for format_type(), which somehow escaped it before.

20 years agoAdd intset() to README (backpatch teodor's docs fix in HEAD).
Tom Lane [Fri, 28 Jan 2005 22:58:59 +0000 (22:58 +0000)] 
Add intset() to README (backpatch teodor's docs fix in HEAD).

20 years agoAdd note cautioning that you can't use an encrypting IDENT server
Tom Lane [Fri, 28 Jan 2005 22:38:50 +0000 (22:38 +0000)] 
Add note cautioning that you can't use an encrypting IDENT server
with Postgres.

20 years agoWhen dealing with multiple grouping columns coming from the same table,
Tom Lane [Fri, 28 Jan 2005 20:35:14 +0000 (20:35 +0000)] 
When dealing with multiple grouping columns coming from the same table,
clamp the estimated number of groups to table row count over 10, instead
of table row count; this reflects a heuristic that people probably won't
group over a near-unique set of columns, and the knowledge that we don't
currently have any way to estimate the correlation of the columns better
than guessing.  This change creates a trivial plan change in one of the
regression tests.

20 years agoImprove planner's estimation of the space needed for HashAgg plans:
Tom Lane [Fri, 28 Jan 2005 19:36:33 +0000 (19:36 +0000)] 
Improve planner's estimation of the space needed for HashAgg plans:
look at the actual aggregate transition datatypes and the actual overhead
needed by nodeAgg.c, instead of using pessimistic round numbers.
Per a discussion with Michael Tiemann.

20 years agopg_aggregate.h fails to compile standalone, for lack of an #include
Tom Lane [Fri, 28 Jan 2005 17:36:04 +0000 (17:36 +0000)] 
pg_aggregate.h fails to compile standalone, for lack of an #include
defining List.

20 years agoAdjust mkdir_p to do stat() before trying mkdir(). Avoids problems on
Tom Lane [Fri, 28 Jan 2005 00:36:17 +0000 (00:36 +0000)] 
Adjust mkdir_p to do stat() before trying mkdir().  Avoids problems on
Solaris and should be a little faster anyway, since in most scenarios
all but perhaps the last path component will already exist.

20 years agoCheck that aggregate creator has the right to execute the transition
Tom Lane [Thu, 27 Jan 2005 23:42:44 +0000 (23:42 +0000)] 
Check that aggregate creator has the right to execute the transition
functions of the aggregate, at both aggregate creation and execution times.

20 years agoNow that I look at it, int_array_enum() didn't work either.
Tom Lane [Thu, 27 Jan 2005 21:50:06 +0000 (21:50 +0000)] 
Now that I look at it, int_array_enum() didn't work either.

20 years agoFix security and 64-bit issues in contrib/intagg. This code could
Tom Lane [Thu, 27 Jan 2005 21:35:07 +0000 (21:35 +0000)] 
Fix security and 64-bit issues in contrib/intagg.  This code could
stand to be rewritten altogether, but for now just stick a finger in
the dike.

20 years agoBackpatch translations
Peter Eisentraut [Thu, 27 Jan 2005 12:10:04 +0000 (12:10 +0000)] 
Backpatch translations

20 years agoClose all cursors created during a failed subtransaction. This is needed
Tom Lane [Wed, 26 Jan 2005 23:20:37 +0000 (23:20 +0000)] 
Close all cursors created during a failed subtransaction.  This is needed
to avoid problems when a cursor depends on objects created or changed in
the same subtransaction.  We'd like to do better someday, but this seems
the only workable answer for 8.0.1.

20 years agoPropagate ecpg core dump fix into 8.0 branch.
Tom Lane [Wed, 26 Jan 2005 22:52:01 +0000 (22:52 +0000)] 
Propagate ecpg core dump fix into 8.0 branch.

20 years agoAdjust Windows autovacuum service to retry for up to 5 minutes waiting
Tom Lane [Wed, 26 Jan 2005 22:25:23 +0000 (22:25 +0000)] 
Adjust Windows autovacuum service to retry for up to 5 minutes waiting
for the postmaster to start.  Dave Page

20 years agoOn Windows, set the postmaster executable's stack size to 4MB, so that
Tom Lane [Wed, 26 Jan 2005 21:57:32 +0000 (21:57 +0000)] 
On Windows, set the postmaster executable's stack size to 4MB, so that
it agrees with the default value of max_stack_depth.

20 years agoMinor tweak to avoid unnecessary memory bloat when dumping extremely wide
Tom Lane [Wed, 26 Jan 2005 21:24:27 +0000 (21:24 +0000)] 
Minor tweak to avoid unnecessary memory bloat when dumping extremely wide
column values in -d mode.  Per report from Marty Scholes.  This doesn't
completely solve the issue, because we still need multiple copies of the
field value, but at least one copy can be got rid of painlessly ...

20 years agoAdd docs for a couple of formerly-undocumented geometric conversion functions.
Tom Lane [Wed, 26 Jan 2005 20:42:26 +0000 (20:42 +0000)] 
Add docs for a couple of formerly-undocumented geometric conversion functions.

20 years agoMake pg_dump and pg_restore handle binary archive formats correctly
Tom Lane [Wed, 26 Jan 2005 19:44:53 +0000 (19:44 +0000)] 
Make pg_dump and pg_restore handle binary archive formats correctly
when using stdout/stdin on Windows.

20 years agoUse SHGetFolderPath instead of SHGetSpecialFolderPath to find the
Tom Lane [Wed, 26 Jan 2005 19:24:21 +0000 (19:24 +0000)] 
Use SHGetFolderPath instead of SHGetSpecialFolderPath to find the
APPDATA directory on Windows.  Magnus Hagander

20 years agoMark the text_soundex() function as "strict", to avoid crashing on NULL
Neil Conway [Wed, 26 Jan 2005 08:08:04 +0000 (08:08 +0000)] 
Mark the text_soundex() function as "strict", to avoid crashing on NULL
input. Also, may as well mark it "cacheable" as well. From Kris Jurka.

20 years agoFix breakage created by addition of separate 'acl pass' in pg_dump.
Tom Lane [Tue, 25 Jan 2005 22:44:47 +0000 (22:44 +0000)] 
Fix breakage created by addition of separate 'acl pass' in pg_dump.
Also clean up incredibly poor style in TocIDRequired() usage.

20 years agoAdd missing "ko".
Peter Eisentraut [Tue, 25 Jan 2005 17:31:39 +0000 (17:31 +0000)] 
Add missing "ko".

20 years agoTranslation update
Peter Eisentraut [Tue, 25 Jan 2005 17:30:00 +0000 (17:30 +0000)] 
Translation update

20 years agoFix ALTER TABLE ADD COLUMN so that constraints of domain types are
Tom Lane [Mon, 24 Jan 2005 23:22:13 +0000 (23:22 +0000)] 
Fix ALTER TABLE ADD COLUMN so that constraints of domain types are
enforced properly when there is no explicit default value for the new
column.  Per report from Craig Perras.

20 years agoDisallow LOAD to non-superusers. Per report from John Heasman.
Tom Lane [Mon, 24 Jan 2005 17:46:29 +0000 (17:46 +0000)] 
Disallow LOAD to non-superusers.  Per report from John Heasman.

20 years agoFix memory leak in rtdosplit, per report from Clive Page.
Tom Lane [Mon, 24 Jan 2005 02:47:52 +0000 (02:47 +0000)] 
Fix memory leak in rtdosplit, per report from Clive Page.

20 years agopg_autovacuum fixes from Dave Page:
Neil Conway [Mon, 24 Jan 2005 00:14:23 +0000 (00:14 +0000)] 
pg_autovacuum fixes from Dave Page:

- Dependency services may not be correctly registered when installing as
a Windows Service.

- The sleep time is changed from milliseconds to seconds as it should
be.

- Error messages during service installation/removal are logged to
stderr.

20 years agoThe result of a FULL or RIGHT join can't be assumed to be sorted by the
Tom Lane [Sun, 23 Jan 2005 02:22:34 +0000 (02:22 +0000)] 
The result of a FULL or RIGHT join can't be assumed to be sorted by the
left input's sorting, because null rows may be inserted at various points.
Per report from Ferenc Lutischá¸n.

20 years agoAdd tools/find_gt_lt to find < and > in SGML source.
Bruce Momjian [Sun, 23 Jan 2005 00:38:05 +0000 (00:38 +0000)] 
Add tools/find_gt_lt to find < and > in SGML source.

Lowercase some uppercase tags so tools is more reliable at finding
problems.

20 years agopg_dump dumped the wrong tablespace for an index (ie, the parent table's
Tom Lane [Sun, 23 Jan 2005 00:31:46 +0000 (00:31 +0000)] 
pg_dump dumped the wrong tablespace for an index (ie, the parent table's
tablespace instead of the index's own), except when the index was created
as a constraint.  Report and fix by Tanida Yutaka.

20 years agoNew routine _getObjectDescription() failed to cope with some aspects of
Tom Lane [Sun, 23 Jan 2005 00:04:20 +0000 (00:04 +0000)] 
New routine _getObjectDescription() failed to cope with some aspects of
pre-7.3 pg_dump archive files: namespace isn't there, and in some cases
te->tag may already be quotified.  Per report from Alan Pevec and
followup testing.

20 years agoMore < and > changes to ampersands.
Bruce Momjian [Sat, 22 Jan 2005 23:23:53 +0000 (23:23 +0000)] 
More < and > changes to ampersands.

8.0.X and HEAD.

20 years agoMore < and > cleanups converted to ampersands.
Bruce Momjian [Sat, 22 Jan 2005 23:05:53 +0000 (23:05 +0000)] 
More < and > cleanups converted to ampersands.

20 years agoUpdate version restriction on xml2.
Bruce Momjian [Sat, 22 Jan 2005 22:14:28 +0000 (22:14 +0000)] 
Update version restriction on xml2.

20 years agoChange -> and <- to use proper ampersand markups.
Bruce Momjian [Sat, 22 Jan 2005 22:10:10 +0000 (22:10 +0000)] 
Change -> and <- to use proper ampersand markups.

HEAD and 8.0.X.

20 years agoFix README /contrib/xml2 reference in 8.0 and HEAD.
Bruce Momjian [Sat, 22 Jan 2005 21:21:49 +0000 (21:21 +0000)] 
Fix README /contrib/xml2 reference in 8.0 and HEAD.

20 years agoThis patch updates the regression tests to allow "make installcheck" to
Neil Conway [Sat, 22 Jan 2005 05:14:26 +0000 (05:14 +0000)] 
This patch updates the regression tests to allow "make installcheck" to
pass if "default_with_oids" is set to false. I took the approach of
explicitly adding WITH OIDS to the CREATE TABLEs where necessary, rather
than tweaking the default_with_oids GUC var.

20 years agoPrevent overrunning a heap-allocated buffer is more than 1024 parameters
Neil Conway [Fri, 21 Jan 2005 00:17:02 +0000 (00:17 +0000)] 
Prevent overrunning a heap-allocated buffer is more than 1024 parameters
to a refcursor declaration are specified. This is a minimally-invasive fix
for the buffer overrun -- a more thorough cleanup will be checked into
HEAD.

20 years agoMention Rekall is GPL now.
Bruce Momjian [Wed, 19 Jan 2005 19:54:13 +0000 (19:54 +0000)] 
Mention Rekall is GPL now.

20 years agoFix typo.
Bruce Momjian [Wed, 19 Jan 2005 03:15:59 +0000 (03:15 +0000)] 
Fix typo.

20 years agoits that time ... tag it for release REL8_0_0
PostgreSQL Daemon [Mon, 17 Jan 2005 20:47:10 +0000 (20:47 +0000)] 
its that time ... tag it for release

20 years agoTranslation updates
Peter Eisentraut [Mon, 17 Jan 2005 20:27:44 +0000 (20:27 +0000)] 
Translation updates

20 years agoClarify that the --enable-integer-datetimes switch affects the time and
Tom Lane [Mon, 17 Jan 2005 18:47:15 +0000 (18:47 +0000)] 
Clarify that the --enable-integer-datetimes switch affects the time and
interval datatypes as well as timestamp.

20 years agoPlease find enclosed another patch that now (I hope) really is
Bruce Momjian [Mon, 17 Jan 2005 17:29:49 +0000 (17:29 +0000)] 
Please find enclosed another patch that now (I hope) really is
correct.  It's in addition to the previous patch.

David Fetter

20 years agoTranslation updates
Peter Eisentraut [Mon, 17 Jan 2005 14:55:34 +0000 (14:55 +0000)] 
Translation updates

20 years agoTranslation updates
Peter Eisentraut [Mon, 17 Jan 2005 10:00:06 +0000 (10:00 +0000)] 
Translation updates

20 years agoFix format string error.
Peter Eisentraut [Mon, 17 Jan 2005 09:06:31 +0000 (09:06 +0000)] 
Fix format string error.

20 years agoFix minor thinko in pg_dump documentation of "-n" option.
Neil Conway [Mon, 17 Jan 2005 04:30:37 +0000 (04:30 +0000)] 
Fix minor thinko in pg_dump documentation of "-n" option.

20 years agoSpelling fix.
Bruce Momjian [Mon, 17 Jan 2005 04:27:23 +0000 (04:27 +0000)] 
Spelling fix.

20 years agoThis trivial patch adds a regression test for CASE expressions that use
Neil Conway [Mon, 17 Jan 2005 03:39:37 +0000 (03:39 +0000)] 
This trivial patch adds a regression test for CASE expressions that use
an untyped literal in the CASE's test expression. This adds test
coverage for a bug that was fixed by Tom on January 12.

20 years agoTranslation updates
Peter Eisentraut [Mon, 17 Jan 2005 03:09:08 +0000 (03:09 +0000)] 
Translation updates

20 years agoNew translation
Peter Eisentraut [Mon, 17 Jan 2005 03:05:37 +0000 (03:05 +0000)] 
New translation

20 years agoPlease find enclosed a patch to the pl/perl documents that correctly
Bruce Momjian [Mon, 17 Jan 2005 03:04:17 +0000 (03:04 +0000)] 
Please find enclosed a patch to the pl/perl documents that correctly
tells what arguments go to pl/perl triggers.

David Fetter

20 years agoMention ALTER COLUMN TYPE in FAQ.
Bruce Momjian [Mon, 17 Jan 2005 03:02:56 +0000 (03:02 +0000)] 
Mention ALTER COLUMN TYPE in FAQ.

20 years agoUpdate German FAQ.
Bruce Momjian [Mon, 17 Jan 2005 02:42:31 +0000 (02:42 +0000)] 
Update German FAQ.

Ian Barwick

20 years agoTranslation updates
Peter Eisentraut [Mon, 17 Jan 2005 02:41:50 +0000 (02:41 +0000)] 
Translation updates

20 years agoUpdate to 8.0.0 for packaging.
Bruce Momjian [Mon, 17 Jan 2005 02:40:56 +0000 (02:40 +0000)] 
Update to 8.0.0 for packaging.

20 years agoUpdate supported platforms list.
Peter Eisentraut [Mon, 17 Jan 2005 02:29:23 +0000 (02:29 +0000)] 
Update supported platforms list.

20 years agoSome more copy-editing.
Tom Lane [Mon, 17 Jan 2005 01:29:02 +0000 (01:29 +0000)] 
Some more copy-editing.

20 years agoRemove </a>
Bruce Momjian [Sat, 15 Jan 2005 22:51:10 +0000 (22:51 +0000)] 
Remove </a>

Alvaro

20 years agoUpdate TORA item.
Bruce Momjian [Sat, 15 Jan 2005 22:44:18 +0000 (22:44 +0000)] 
Update TORA item.

Euler Taveira de Oliveira