]> granicus.if.org Git - postgresql/log
postgresql
22 years agoBack-patch fix for correct TAS operation on multi-CPU PPC machines.
Tom Lane [Mon, 30 Sep 2002 20:24:53 +0000 (20:24 +0000)]
Back-patch fix for correct TAS operation on multi-CPU PPC machines.

22 years agoBack-patch fix for 'can't wait without a PROC structure' failures:
Tom Lane [Mon, 30 Sep 2002 20:18:59 +0000 (20:18 +0000)]
Back-patch fix for 'can't wait without a PROC structure' failures:
remove separate ShutdownBufferPoolAccess exit callback, and do the
work in ProcKill instead, before we delete MyProc.

22 years agoBack-patch fix to ensure a checkpoint occurs before truncating CLOG,
Tom Lane [Mon, 30 Sep 2002 19:55:08 +0000 (19:55 +0000)]
Back-patch fix to ensure a checkpoint occurs before truncating CLOG,
even if no recent WAL activity has occurred.

22 years agoBack-patch fix to not change pg_database.datvacuumxid or truncate CLOG
Tom Lane [Mon, 30 Sep 2002 19:45:57 +0000 (19:45 +0000)]
Back-patch fix to not change pg_database.datvacuumxid or truncate CLOG
when an unprivileged user runs VACUUM.

22 years agoBack-patch fix for failure to dump views containing FULL JOIN USING.
Tom Lane [Fri, 20 Sep 2002 21:37:07 +0000 (21:37 +0000)]
Back-patch fix for failure to dump views containing FULL JOIN USING.
The bug is not present in CVS tip due to cleanup of JOIN handling,
but 7.2.* is broken.

22 years agoUpdate HISTORY with Neil's changes. REL7_2_2
Bruce Momjian [Fri, 23 Aug 2002 02:33:06 +0000 (02:33 +0000)]
Update HISTORY with Neil's changes.

22 years agoStamp the 7.2.2 release.
Bruce Momjian [Thu, 22 Aug 2002 23:26:26 +0000 (23:26 +0000)]
Stamp the 7.2.2 release.

22 years agoFix regression-test breakage from (unnecessary) rewrite of show_datestyle. Grumble.
Tom Lane [Thu, 22 Aug 2002 22:17:22 +0000 (22:17 +0000)]
Fix regression-test breakage from (unnecessary) rewrite of show_datestyle.  Grumble.

22 years agoBack-patch fix to make partial indexes usable on relations other than
Tom Lane [Thu, 22 Aug 2002 16:20:38 +0000 (16:20 +0000)]
Back-patch fix to make partial indexes usable on relations other than
the first one listed in a query.  Per request from Oleg.

22 years agoApply Neil Conway's security patches to 7.2.X.
Bruce Momjian [Thu, 22 Aug 2002 05:27:41 +0000 (05:27 +0000)]
Apply Neil Conway's security patches to 7.2.X.

22 years agoFix bug in pg_convert() per report from MaC.Yui.
Tatsuo Ishii [Mon, 19 Aug 2002 04:58:26 +0000 (04:58 +0000)]
Fix bug in pg_convert() per report from MaC.Yui.
It pfree() wrong pointer.

23 years agoBack-patch 7.3 fix to fully parenthesize UNION/EXCEPT/INTERSECT queries
Tom Lane [Sat, 15 Jun 2002 18:38:10 +0000 (18:38 +0000)]
Back-patch 7.3 fix to fully parenthesize UNION/EXCEPT/INTERSECT queries
in ruleutils output.  The previous partial parenthesization was a hack
to get around grammar restrictions that have since been fixed; and as
Sam O'Connor pointed out, there were cases where it didn't work.

23 years agoPlease apply attached patch to contrib/intarray (7.2, 7.3).
Bruce Momjian [Fri, 7 Jun 2002 21:53:09 +0000 (21:53 +0000)]
Please apply attached patch to contrib/intarray (7.2, 7.3).

     Fixed bug with '=' operator for gist__int_ops and
     define '=' operator for gist__intbig_ops opclass.
     Now '=' operator is consistent with standard 'array' type.

     Thanks Achilleus Mantzios for bug report and suggestion.

Oleg Bartunov

23 years agoRepair incorrect dumping of user-defined aggregate with null initcond.
Tom Lane [Tue, 28 May 2002 15:40:36 +0000 (15:40 +0000)]
Repair incorrect dumping of user-defined aggregate with null initcond.
(Already fixed in current, but need a patch for 7.2.2.)

23 years agoFix a bug with building rtree_gist indexes.
Tom Lane [Tue, 28 May 2002 15:25:03 +0000 (15:25 +0000)]
Fix a bug with building rtree_gist indexes.
Patch from Teodor Sigaev.

23 years agoRepair error with not adjusting active scans properly after gistSplit.
Tom Lane [Tue, 28 May 2002 15:22:44 +0000 (15:22 +0000)]
Repair error with not adjusting active scans properly after gistSplit.
Patch from Teodor Sigaev.

23 years agoMake RelationForgetRelation error out if the relcache entry has nonzero
Tom Lane [Wed, 22 May 2002 17:29:45 +0000 (17:29 +0000)]
Make RelationForgetRelation error out if the relcache entry has nonzero
reference count.  This avoids leaving dangling pointers around, as in
recent bug report against sequences (bug# 671).

23 years agoRepair OPEN cursor(args), which I broke on 11/29/01 with a change to
Tom Lane [Tue, 21 May 2002 18:50:18 +0000 (18:50 +0000)]
Repair OPEN cursor(args), which I broke on 11/29/01 with a change to
be smarter about parentheses in read_sql_construct().  Sigh.

23 years agoRemove unnecessary pfree's in geometric operators. At least one of these
Tom Lane [Tue, 14 May 2002 18:16:54 +0000 (18:16 +0000)]
Remove unnecessary pfree's in geometric operators.  At least one of these
is actively dangerous, per bug report from Ewald Geschwinde 14-May-02,
and several of the rest look suspicious to me.  Since there is no longer
any significant value in retail pfree's in these functions, just get
rid of all of them for safety's sake.

23 years agoFix bug in pg_dump and psql (to reproduce the bug, just try pg_dump
Tatsuo Ishii [Tue, 14 May 2002 02:08:22 +0000 (02:08 +0000)]
Fix bug in pg_dump and psql (to reproduce the bug, just try pg_dump
--nonexistingoption).

per report from sugita@sra.co.jp on Thu, 09 May 2002 11:57:51 +0900
(JST) at pgsql-patches list.

Illegal long options to pg_dump makes core on some systems, since it
lacks the last null sentinel of struct option array.

Attached is a patch made by Mr. Ishida Akio <iakio@pjam.jpweb.net>.

23 years agoplpgsql_dstring_append was broken for long strings.
Tom Lane [Sun, 5 May 2002 17:38:28 +0000 (17:38 +0000)]
plpgsql_dstring_append was broken for long strings.

23 years agoChange heap_get_latest_tid() so that a transaction can
Hiroshi Inoue [Wed, 1 May 2002 01:27:31 +0000 (01:27 +0000)]
Change heap_get_latest_tid() so that a transaction can
see changes made by the transaction itself.

23 years agoA backport patch.
Tatsuo Ishii [Mon, 8 Apr 2002 06:21:31 +0000 (06:21 +0000)]
A backport patch.
Fix PQescapeBytea/PQunescapeBytea so that they handle bytes > 0x7f.
This is necessary for mulibyte character sequences.
See "[HACKERS] PQescapeBytea is not multibyte aware" thread posted around
2002/04/05 for more details.

23 years agoFix CLOG truncation code to not do the Wrong Thing when there are already
Tom Lane [Tue, 2 Apr 2002 05:12:00 +0000 (05:12 +0000)]
Fix CLOG truncation code to not do the Wrong Thing when there are already
wrapped-around databases.  The unvacuumed databases might be fine, or
they might not, but things will definitely not be fine if we remove the
wrong CLOG segments.  Per trouble report from Gary Wolfe, 1-Apr-2002.

23 years agoUpdate release list. REL7_2_1
Bruce Momjian [Tue, 26 Mar 2002 05:34:37 +0000 (05:34 +0000)]
Update release list.

23 years agoUpdate sgml version properly.
Bruce Momjian [Tue, 26 Mar 2002 05:33:47 +0000 (05:33 +0000)]
Update sgml version properly.

23 years agoNew wording:
Bruce Momjian [Mon, 25 Mar 2002 21:24:46 +0000 (21:24 +0000)]
New wording:

 Allow EXECUTE of "CREATE TABLE AS ... SELECT" in PL/PgSQL (Tom)

23 years agoAdd to HISTORY:
Bruce Momjian [Mon, 25 Mar 2002 20:58:40 +0000 (20:58 +0000)]
Add to HISTORY:

 Allow CREATE TABLE AS ... SELECT in PL/PgSQL (Tom)

23 years agoRe-allow CREATE AS (but not SELECT INTO) in EXECUTE.
Tom Lane [Mon, 25 Mar 2002 07:41:21 +0000 (07:41 +0000)]
Re-allow CREATE AS (but not SELECT INTO) in EXECUTE.

23 years agoRemove long-dead 'fix for SELECT NULL' to stop current coredump.
Tom Lane [Thu, 21 Mar 2002 06:21:14 +0000 (06:21 +0000)]
Remove long-dead 'fix for SELECT NULL' to stop current coredump.

23 years ago> > Users of contrib/tsearch needs after upgrading of module (compiling, installing)
Bruce Momjian [Tue, 19 Mar 2002 14:16:32 +0000 (14:16 +0000)]
> > Users of contrib/tsearch needs after upgrading of module (compiling, installing)
> > to perform sql command:
> >  update pg_amop set amopreqcheck = true where amopclaid =
> >       (select oid from pg_opclass where opcname = 'gist_txtidx_ops');
>
> Oleg, sorry, I don't understand where this should appear.  In the README
> file, and if so, where?  Is this something only for people upgrading
> from 7.2?

Sorry Bruce, I was unclear. I have attached patch to Readme.tsearch
Also, It'd be worth to mention in Changes to point users of tsearch
about importang upgrade notices.

Oleg Bartunov

23 years agoImprove wording of bug fix:
Bruce Momjian [Tue, 19 Mar 2002 00:12:41 +0000 (00:12 +0000)]
Improve wording of bug fix:

Ensure that sequence counters do not go backwards after a crash

23 years agoUpdate for 7.2.1.
Bruce Momjian [Mon, 18 Mar 2002 23:04:11 +0000 (23:04 +0000)]
Update for 7.2.1.

23 years agoBackpatch array I/O code and documentation fixes, also array slice
Tom Lane [Sun, 17 Mar 2002 20:05:59 +0000 (20:05 +0000)]
Backpatch array I/O code and documentation fixes, also array slice
lower subscript bounds change.

23 years agoRepair bad calculation in timetz_izone() which gave erroneous results.
Thomas G. Lockhart [Fri, 15 Mar 2002 23:37:48 +0000 (23:37 +0000)]
Repair bad calculation in timetz_izone() which gave erroneous results.
Will be patched separately but equivalently in HEAD for 7.3.

23 years agoRepair two problems with WAL logging of sequence nextvalI() ops, as
Tom Lane [Fri, 15 Mar 2002 19:20:47 +0000 (19:20 +0000)]
Repair two problems with WAL logging of sequence nextvalI() ops, as
per recent pghackers discussion: force a new WAL record at first nextval
after a checkpoint, and ensure that xlog is flushed to disk if a nextval
record is the only thing emitted by a transaction.

23 years agoUpdate FAQ for 7.2.1.
Bruce Momjian [Wed, 13 Mar 2002 20:53:15 +0000 (20:53 +0000)]
Update FAQ for 7.2.1.

23 years agoPleas apply it for 7.2.1 and current CVS.
Bruce Momjian [Mon, 11 Mar 2002 16:55:18 +0000 (16:55 +0000)]
Pleas apply it for 7.2.1 and current CVS.

Patch fixes using lc.lang instead of lc.lc_ctype.

Teodor Sigaev

23 years agoGuard against NULL strings in SET key=val constructs.
Thomas G. Lockhart [Sat, 9 Mar 2002 17:41:04 +0000 (17:41 +0000)]
Guard against NULL strings in SET key=val constructs.
 Problem noted by Fernando Nasser.

23 years agoPlease, apply attached patch for contrib/tsearch to 7.2.1 and current
Bruce Momjian [Tue, 5 Mar 2002 06:10:49 +0000 (06:10 +0000)]
Please, apply attached patch for contrib/tsearch to 7.2.1 and current
CVS. It  fix english stemmer's problem with ending words like
'technology'.

We have found one more bug in english stemmer. The bug is with
'irregular'  english words like 'skies' -> 'sky'. Please, apply attached
cumulative patch to  7.2.1 and current CVS instead previous one.

Thank to Thomas T. Thai <tom@minnesota.com> for hard testing. This kind
of bug  has significance only for dump/reload database and viewing, but
searching/indexing works right.

Teodor Sigaev

23 years agoPrevious patch to mark UNION outputs with common typmod (if any) breaks
Tom Lane [Tue, 5 Mar 2002 05:13:36 +0000 (05:13 +0000)]
Previous patch to mark UNION outputs with common typmod (if any) breaks
three-or-more-way UNIONs, as per example from Josh Berkus.  Cause is a
fragile assumption that one tlist's entries will exactly match another.
Restructure code to make that assumption a little less fragile.

23 years agoA backport patch:
Tatsuo Ishii [Tue, 5 Mar 2002 03:45:44 +0000 (03:45 +0000)]
A backport patch:

Fix bug in extract/date_part for milliseconds/miscroseconds and
timestamp/timestamptz combo. Now extract/date_part returns
seconds*1000 or 1000000 + fraction part as the manual stats.
regression test are also fixed.

See the thread in pgsql-hackers:

Subject: Re: [HACKERS] timestamp_part() bug?
Date: Sat, 02 Mar 2002 11:29:53 +0900

23 years agoUpdate FAQ_Solaris with info about gcc 2.95.1 problems and how to work
Tom Lane [Mon, 4 Mar 2002 17:47:24 +0000 (17:47 +0000)]
Update FAQ_Solaris with info about gcc 2.95.1 problems and how to work
around 64-bit vsnprintf bug.

23 years agoBack-patch fix for errors reported at transaction end.
Tom Lane [Wed, 27 Feb 2002 23:17:01 +0000 (23:17 +0000)]
Back-patch fix for errors reported at transaction end.

23 years agoBack-patch fix for followings:
Tatsuo Ishii [Wed, 27 Feb 2002 01:47:31 +0000 (01:47 +0000)]
Back-patch fix for followings:

Fix bug in COPY FROM when DELIMITER is not in ASCII range.
See pgsql-bugs/pgsql-hackers discussion "COPY FROM is not 8bit clean"
around 2002/02/26 for more details -- Tatsuo Ishii

23 years agoBack-patch fix for command completion report handling. This is
Tom Lane [Tue, 26 Feb 2002 23:48:47 +0000 (23:48 +0000)]
Back-patch fix for command completion report handling.  This is
primarily needed so that INSERTing a row still reports the row's OID
even when there are ON INSERT rules firing additional queries.

23 years agoTweak psql's \connect command to not downcase unquoted database and user
Tom Lane [Mon, 25 Feb 2002 21:37:47 +0000 (21:37 +0000)]
Tweak psql's \connect command to not downcase unquoted database and user
names.  This is a temporary measure to allow backwards compatibility with
7.2 and earlier pg_dump.  7.2.1 and later pg_dump will double-quote mixed
case names in \connect.  Once we feel that older dumps are not a problem
anymore, we can revert this change and treat \connect arguments as normal
SQL identifiers.

23 years agoFix for PAM error message display:
Bruce Momjian [Mon, 25 Feb 2002 20:07:33 +0000 (20:07 +0000)]
Fix for PAM error message display:

> and that the right fix is to make each of the subsequent calls be in
> this same pattern, not to try to emulate their nonsensical style.

Dominic J. Eidson

23 years agoAdd a large number of time zones to the lookup table.
Thomas G. Lockhart [Mon, 25 Feb 2002 16:22:48 +0000 (16:22 +0000)]
Add a large number of time zones to the lookup table.
Fix a few apparently-wrong TZ vs DTZ declarations.
Same patch as added to HEAD.

23 years agoWe had a problem with to compile pgsql-7.2 under SW-8.0.
Bruce Momjian [Fri, 22 Feb 2002 15:40:28 +0000 (15:40 +0000)]
We had a problem with to compile pgsql-7.2 under SW-8.0.
In the mailing lists I found no informations.
See note for further informations.

Add missing AuthBlockSig.

regards Heiko

23 years agoBACKPATCH:
Bruce Momjian [Fri, 22 Feb 2002 13:03:01 +0000 (13:03 +0000)]
BACKPATCH:

Add Russian FAQ to 7.2.1.  Why not?

23 years agoBACKPATCH:
Bruce Momjian [Fri, 22 Feb 2002 06:08:48 +0000 (06:08 +0000)]
BACKPATCH:

Please, apply attached patch of contrib/btree_gist to 7.2.1 and current
cvs.
The patch fixes memory leak during creation GiST index on timestamp
column.

Thank you.

--
Teodor Sigaev
teodor@stack.net

23 years agoAvoid failures in cash_out and cash_words for INT_MIN.
Tom Lane [Tue, 19 Feb 2002 22:19:42 +0000 (22:19 +0000)]
Avoid failures in cash_out and cash_words for INT_MIN.
Also, 'fourty' -> 'forty'.

23 years agoReplace number-of-distinct-values estimator equation, per recent
Tom Lane [Mon, 18 Feb 2002 16:04:21 +0000 (16:04 +0000)]
Replace number-of-distinct-values estimator equation, per recent
pghackers discussion.

23 years agoFix kanji-coversion key binding. This has been broken since 7.1
Tatsuo Ishii [Mon, 18 Feb 2002 04:12:34 +0000 (04:12 +0000)]
Fix kanji-coversion key binding. This has been broken since 7.1
Per Yoshinori Ariie's report.

23 years agoFix SGML typo in previous patch.
Bruce Momjian [Sun, 17 Feb 2002 13:29:00 +0000 (13:29 +0000)]
Fix SGML typo in previous patch.

23 years agoI think it's important that it's actually documented that they can add
Bruce Momjian [Sun, 17 Feb 2002 11:50:09 +0000 (11:50 +0000)]
I think it's important that it's actually documented that they can add
primary keys after the fact!

Also, we need to add regression tests for alter table / add primary key
and alter table / drop constraint.  These shouldn't be added until 7.3
tho
methinks...

Chris

23 years agoClarify params to ALTER TABLE to clearly show single parameters.
Bruce Momjian [Sat, 16 Feb 2002 23:45:48 +0000 (23:45 +0000)]
Clarify params to ALTER TABLE to clearly show single parameters.

e.g. table contraint definition -> table_constraint_definition.

23 years agoRemove warning about automatic inclusion of sqlca.
Peter Eisentraut [Fri, 15 Feb 2002 17:46:57 +0000 (17:46 +0000)]
Remove warning about automatic inclusion of sqlca.

23 years agoUpdate FAQ.
Bruce Momjian [Thu, 14 Feb 2002 17:15:00 +0000 (17:15 +0000)]
Update FAQ.

23 years agoEnsure that a cursor is scanned under the same scanCommandId it was
Tom Lane [Thu, 14 Feb 2002 15:24:10 +0000 (15:24 +0000)]
Ensure that a cursor is scanned under the same scanCommandId it was
originally created with, so that the set of visible tuples does not
change as a result of other activity.  This essentially makes PG cursors
INSENSITIVE per the SQL92 definition.  See bug report of 13-Feb-02.

23 years agoPoint out that --adduser actually makes the new user a superuser. This
Tom Lane [Wed, 13 Feb 2002 19:32:17 +0000 (19:32 +0000)]
Point out that --adduser actually makes the new user a superuser.  This
was mentioned on the man page for the underlying CREATE USER command,
but it should be explained here too.

23 years agoAdd DROP COLUMN status from Hiroshi.
Bruce Momjian [Wed, 13 Feb 2002 14:36:43 +0000 (14:36 +0000)]
Add DROP COLUMN status from Hiroshi.

23 years agoUse RTLD_NOW, not RTLD_LAZY, as binding mode for dlopen() on all platforms.
Tom Lane [Tue, 12 Feb 2002 23:41:25 +0000 (23:41 +0000)]
Use RTLD_NOW, not RTLD_LAZY, as binding mode for dlopen() on all platforms.
This restores the Linux behavior to what it was in PG 7.0 and 7.1, and
causes other platforms to agree.  (Other well-tested platforms like HPUX
were doing it this way already.)  Per pghackers discussion over the past
month or so.

23 years agoAdd warning not to use /usr/ucb/cc on Solaris.
Tom Lane [Tue, 12 Feb 2002 22:35:07 +0000 (22:35 +0000)]
Add warning not to use /usr/ucb/cc on Solaris.

23 years agoFix tutorial for references problem, from rainer.tammer@spg.schulergroup.com
Bruce Momjian [Tue, 12 Feb 2002 22:25:15 +0000 (22:25 +0000)]
Fix tutorial for references problem, from rainer.tammer@spg.schulergroup.com

23 years agoClarify working in 'top x items using sequential scan' item
Bruce Momjian [Tue, 12 Feb 2002 22:24:36 +0000 (22:24 +0000)]
Clarify working in 'top x items using sequential scan' item

23 years agoModify COPY TO to emit carriage returns and newlines as backslash escapes
Tom Lane [Tue, 12 Feb 2002 21:25:41 +0000 (21:25 +0000)]
Modify COPY TO to emit carriage returns and newlines as backslash escapes
(backslash-r, backslash-n) for protection against newline-conversion
munging.  In future we will also tweak COPY FROM, but this part of the
change should be backwards-compatible.  Per pghackers discussion.
Also, update COPY reference page to describe the backslash conversions
more completely and accurately.

23 years agoUpdate FAQ.
Bruce Momjian [Tue, 12 Feb 2002 17:18:10 +0000 (17:18 +0000)]
Update FAQ.

23 years agoUpdate FAQ.
Bruce Momjian [Tue, 12 Feb 2002 17:14:55 +0000 (17:14 +0000)]
Update FAQ.

23 years agoUpdate wal files computation documentation.
Bruce Momjian [Mon, 11 Feb 2002 23:25:14 +0000 (23:25 +0000)]
Update wal files computation documentation.

23 years agoTweak GiST code to work correctly on machines where 8-byte alignment
Tom Lane [Mon, 11 Feb 2002 22:41:59 +0000 (22:41 +0000)]
Tweak GiST code to work correctly on machines where 8-byte alignment
of pointers is required.  Patch from Teodor Sigaev per pghackers
discussion.  It's an ugly kluge but avoids forcing initdb; we'll put
a better fix into 7.3 or later.

23 years agoFix for old FreeBSD versions that don't have RTLD_GLOBAL
Peter Eisentraut [Mon, 11 Feb 2002 21:38:11 +0000 (21:38 +0000)]
Fix for old FreeBSD versions that don't have RTLD_GLOBAL

23 years agoRepair problems with EvalPlanQual where target table is scanned as
Tom Lane [Mon, 11 Feb 2002 20:10:50 +0000 (20:10 +0000)]
Repair problems with EvalPlanQual where target table is scanned as
inner indexscan (ie, one with runtime keys).  ExecIndexReScan must
compute or recompute runtime keys even if we are rescanning in the
EPQ case.  TidScan seems to have comparable problems.  Per bug
noted by Barry Lind 11-Feb-02.

23 years agoFix typo.
Bruce Momjian [Mon, 11 Feb 2002 18:14:56 +0000 (18:14 +0000)]
Fix typo.

<  o prevent lose of indexes, permissions, inheritance (Bruce)
---
>  o prevent loss of indexes, permissions, inheritance (Bruce)

23 years agoFix flag handling of pg_upgrade.
Bruce Momjian [Mon, 11 Feb 2002 15:19:33 +0000 (15:19 +0000)]
Fix flag handling of pg_upgrade.

23 years agoBe more wary about mixed-case database names and user names. Get
Tom Lane [Mon, 11 Feb 2002 00:18:20 +0000 (00:18 +0000)]
Be more wary about mixed-case database names and user names.  Get
the CREATE DATABASE command right in pg_dump -C case.

23 years agopg_dump and pg_restore man pages need to mention that one should restore
Tom Lane [Mon, 11 Feb 2002 00:14:10 +0000 (00:14 +0000)]
pg_dump and pg_restore man pages need to mention that one should restore
into a virgin database, ie, one created from template0, if there are any
site-local additions in template1.

23 years agoDon't Assert() that fsync() and close() never fail; I have seen this
Tom Lane [Sun, 10 Feb 2002 22:56:31 +0000 (22:56 +0000)]
Don't Assert() that fsync() and close() never fail; I have seen this
crash on Solaris when over disk quota.  Instead, report such failures
via elog(DEBUG).

23 years agoMove sys/types.h to top, for hiroyuki hanai/ FreeBSD.
Bruce Momjian [Fri, 8 Feb 2002 16:30:11 +0000 (16:30 +0000)]
Move sys/types.h to top, for hiroyuki hanai/ FreeBSD.

23 years agoUpgrade my2pg version 1.23.
Bruce Momjian [Fri, 8 Feb 2002 14:47:56 +0000 (14:47 +0000)]
Upgrade my2pg version 1.23.

23 years agoOops, already completed:
Bruce Momjian [Fri, 8 Feb 2002 06:41:30 +0000 (06:41 +0000)]
Oops, already completed:

< * Have checkpoint process identify itself via ps status display

23 years agoAdded:
Bruce Momjian [Fri, 8 Feb 2002 04:32:17 +0000 (04:32 +0000)]
Added:

> * Have checkpoint process identify itself via ps status display

23 years agopgstat's truncation of query string needs to be multibyte-aware.
Tom Lane [Thu, 7 Feb 2002 22:20:26 +0000 (22:20 +0000)]
pgstat's truncation of query string needs to be multibyte-aware.
Patch from sugita@sra.co.jp.

23 years agoRepair some problems in GIST-index contrib modules. Patch from
Tom Lane [Thu, 7 Feb 2002 22:11:43 +0000 (22:11 +0000)]
Repair some problems in GIST-index contrib modules.  Patch from
Teodor Sigaev <teodor@stack.net>.

23 years agoRemoved a check for REINDEX TABLE.
Hiroshi Inoue [Thu, 7 Feb 2002 00:27:30 +0000 (00:27 +0000)]
Removed a check for REINDEX TABLE.

23 years agoFix for parallel make
Peter Eisentraut [Wed, 6 Feb 2002 20:29:35 +0000 (20:29 +0000)]
Fix for parallel make

23 years agoFix failure to reconnect as sequence's owner before issuing setval().
Tom Lane [Wed, 6 Feb 2002 17:27:50 +0000 (17:27 +0000)]
Fix failure to reconnect as sequence's owner before issuing setval().

23 years agoUpdate for Tom:
Bruce Momjian [Mon, 4 Feb 2002 20:51:22 +0000 (20:51 +0000)]
Update for Tom:

< * Allow row re-use with automatic vacuum (Tom)
356c355
<
---
> * Provide automatic scheduling of background vacuum (Tom)

23 years agoModified/Added
Bruce Momjian [Mon, 4 Feb 2002 20:46:36 +0000 (20:46 +0000)]
Modified/Added

< * Allow row re-use without vacuum (Tom)
---
> * Allow row re-use with automatic vacuum (Tom)

> * Flush cached query plans when their underlying catalog data changes

23 years agoStamp configure/configure.in for 7.2, already did register.txt and REL7_2
Bruce Momjian [Sun, 3 Feb 2002 21:04:12 +0000 (21:04 +0000)]
Stamp configure/configure.in for 7.2, already did register.txt and
bug.template.

23 years agoStamp 7.2 for release.
Bruce Momjian [Sun, 3 Feb 2002 21:00:09 +0000 (21:00 +0000)]
Stamp 7.2 for release.

23 years agoRemove ENHANCEMENTS section, move subsections up.
Bruce Momjian [Sun, 3 Feb 2002 19:24:30 +0000 (19:24 +0000)]
Remove ENHANCEMENTS section, move subsections up.

23 years agoUpdate FAQ.
Bruce Momjian [Sat, 2 Feb 2002 21:46:45 +0000 (21:46 +0000)]
Update FAQ.

23 years agoUpdate FAQ.
Bruce Momjian [Sat, 2 Feb 2002 20:34:33 +0000 (20:34 +0000)]
Update FAQ.

23 years agoUpdate for 7.2:
Bruce Momjian [Sat, 2 Feb 2002 20:34:16 +0000 (20:34 +0000)]
Update for 7.2:

This fixes references to 7.1.3 (I think).  It also
modifies the japanese
FAQ, so I'm not sure if that's done correctly.

Chris

23 years agoUpdate FAQ_DEV.
Bruce Momjian [Fri, 1 Feb 2002 20:28:32 +0000 (20:28 +0000)]
Update FAQ_DEV.

23 years agoLast Minute AIX_FAQ patch with small corrections for current version,
Bruce Momjian [Fri, 1 Feb 2002 18:23:24 +0000 (18:23 +0000)]
Last Minute AIX_FAQ patch with small corrections for current version,
please apply.

Andreas

23 years agoAdded:
Bruce Momjian [Fri, 1 Feb 2002 17:00:17 +0000 (17:00 +0000)]
Added:

> * Prevent SIGHUP and 'pg_ctl reload' from changing command line
>   specified parameters to postgresql.conf defaults

23 years agoConsistend spelling for PL/pgSQL
Bruce Momjian [Thu, 31 Jan 2002 21:20:03 +0000 (21:20 +0000)]
Consistend spelling for PL/pgSQL