pg_upgrade project status

Started by Zdenek Kotalaabout 17 years ago80 messageshackers
Jump to latest
#1Zdenek Kotala
Zdenek.Kotala@Sun.COM

The current project is not in good shape. Feature freeze is coming and
nothing is committed. Currently there are three patches in the game:

1) Space reservation
http://archives.postgresql.org/pgsql-hackers/2008-12/msg00886.php
http://archives.postgresql.org/pgsql-hackers/2009-01/msg02031.php

This patch is mandatory for page online conversion and MUST TO be part
of postgreSQL 8.4. if not ... then we will be at the beginning next
year.

I sent updated version today.

2) pg_upgrade.sh
http://archives.postgresql.org/pgsql-hackers/2008-12/msg00248.php

Pg_upgrade.sh is shell script for catalog conversion. It works for
8.3->8.4 upgrade. It will be useful while we will not have better
solution. Disadvantage is that it is korn shell script. The idea is to
rewrite it in PERL which is more portable, but I'm not PERL expert and
currently there is no workable solution.

And what is deadline for it? We can delivery it later with 8.4.1, but
best time for testing is during betas and RC period.

3) preupgrade script
http://archives.postgresql.org/pgsql-hackers/2008-12/msg01273.php

I sent WIP version of this script, which shows how reservation space
feature will be used. This part is not important now. It will be
important for 8.4->8.5 upgrade and cannot be finished until 8.5beta.

Thats all

Zdenek

#2Andrew Dunstan
andrew@dunslane.net
In reply to: Zdenek Kotala (#1)
Re: pg_upgrade project status

Zdenek Kotala wrote:

The current project is not in good shape. Feature freeze is coming and
nothing is committed. Currently there are three patches in the game:

[...]

2) pg_upgrade.sh
http://archives.postgresql.org/pgsql-hackers/2008-12/msg00248.php

Pg_upgrade.sh is shell script for catalog conversion. It works for
8.3->8.4 upgrade. It will be useful while we will not have better
solution. Disadvantage is that it is korn shell script. The idea is to
rewrite it in PERL which is more portable, but I'm not PERL expert and
currently there is no workable solution.

And what is deadline for it? We can delivery it later with 8.4.1, but
best time for testing is during betas and RC period.

I have had a very brief look at this. Translation to perl doesn't look
difficult. I'll see what I can do during the next week or so.

cheers

andrew

#3Heikki Linnakangas
heikki.linnakangas@enterprisedb.com
In reply to: Andrew Dunstan (#2)
Re: pg_upgrade project status

Andrew Dunstan wrote:

Zdenek Kotala wrote:

2) pg_upgrade.sh
http://archives.postgresql.org/pgsql-hackers/2008-12/msg00248.php

Pg_upgrade.sh is shell script for catalog conversion. It works for
8.3->8.4 upgrade. It will be useful while we will not have better
solution. Disadvantage is that it is korn shell script. The idea is to
rewrite it in PERL which is more portable, but I'm not PERL expert and
currently there is no workable solution.

I have had a very brief look at this. Translation to perl doesn't look
difficult. I'll see what I can do during the next week or so.

We don't require perl for any other feature, do we? Seems like a pretty
onerous requireemnt for Windows in particular. We do use perl in the
build scripts, but that's only required if you want to compile from source.

--
Heikki Linnakangas
EnterpriseDB http://www.enterprisedb.com

#4Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Heikki Linnakangas (#3)
Re: pg_upgrade project status

Heikki Linnakangas wrote:

Andrew Dunstan wrote:

Zdenek Kotala wrote:

2) pg_upgrade.sh
http://archives.postgresql.org/pgsql-hackers/2008-12/msg00248.php

Pg_upgrade.sh is shell script for catalog conversion. It works for
8.3->8.4 upgrade. It will be useful while we will not have better
solution. Disadvantage is that it is korn shell script. The idea is to
rewrite it in PERL which is more portable, but I'm not PERL expert and
currently there is no workable solution.

I have had a very brief look at this. Translation to perl doesn't look
difficult. I'll see what I can do during the next week or so.

We don't require perl for any other feature, do we? Seems like a pretty
onerous requireemnt for Windows in particular. We do use perl in the
build scripts, but that's only required if you want to compile from
source.

I think it's fairly easy to install Perl on Windows actually. It
doesn't sound too onerous a requirement if you want in-place upgrade;
actually it looks a very reasonable one.

Much more reasonable than Korn shell in any case (or any shell for that
matter; I think anything is going to be more of a potentially painful
platform dependency than Perl).

--
Alvaro Herrera http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

#5Dave Page
dpage@pgadmin.org
In reply to: Alvaro Herrera (#4)
Re: pg_upgrade project status

On Tue, Jan 27, 2009 at 2:39 PM, Alvaro Herrera
<alvherre@commandprompt.com> wrote:

I think it's fairly easy to install Perl on Windows actually. It
doesn't sound too onerous a requirement if you want in-place upgrade;
actually it looks a very reasonable one.

There are installers for it, but given that we made a point of porting
everything to C to avoid using any scripting languages on end-user
machines when we ported to Windows, it seems strange to relax that
'policy' now for convenience.

--
Dave Page
EnterpriseDB UK: http://www.enterprisedb.com

#6Kenneth Marshall
ktm@rice.edu
In reply to: Alvaro Herrera (#4)
Re: pg_upgrade project status

On Tue, Jan 27, 2009 at 11:39:50AM -0300, Alvaro Herrera wrote:

Heikki Linnakangas wrote:

Andrew Dunstan wrote:

Zdenek Kotala wrote:

2) pg_upgrade.sh
http://archives.postgresql.org/pgsql-hackers/2008-12/msg00248.php

Pg_upgrade.sh is shell script for catalog conversion. It works for
8.3->8.4 upgrade. It will be useful while we will not have better
solution. Disadvantage is that it is korn shell script. The idea is to
rewrite it in PERL which is more portable, but I'm not PERL expert and
currently there is no workable solution.

I have had a very brief look at this. Translation to perl doesn't look
difficult. I'll see what I can do during the next week or so.

We don't require perl for any other feature, do we? Seems like a pretty
onerous requireemnt for Windows in particular. We do use perl in the
build scripts, but that's only required if you want to compile from
source.

I think it's fairly easy to install Perl on Windows actually. It
doesn't sound too onerous a requirement if you want in-place upgrade;
actually it looks a very reasonable one.

Much more reasonable than Korn shell in any case (or any shell for that
matter; I think anything is going to be more of a potentially painful
platform dependency than Perl).

--
Alvaro Herrera http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

+1

I agree with Alvaro. Perl is a breeze to install on Windows with
Activestate and that using shell code to perform this task adds a
huge platform dependency to the code. Perl is a known and well defined
quantity for scripting.

Cheers,
Ken

#7Robert Haas
robertmhaas@gmail.com
In reply to: Zdenek Kotala (#1)
Re: pg_upgrade project status

On Tue, Jan 27, 2009 at 8:44 AM, Zdenek Kotala <Zdenek.Kotala@sun.com> wrote:

The current project is not in good shape. Feature freeze is coming and
nothing is committed. Currently there are three patches in the game:

Correction: feature freeze is long past.

1) Space reservation
http://archives.postgresql.org/pgsql-hackers/2008-12/msg00886.php
http://archives.postgresql.org/pgsql-hackers/2009-01/msg02031.php

This patch is mandatory for page online conversion and MUST TO be part
of postgreSQL 8.4. if not ... then we will be at the beginning next
year.

I sent updated version today.

I thought we pretty much had agreement that space reservation was not
a good solution to anything, although I admit I'm not quite clear on
what alternative was being proposed.

2) pg_upgrade.sh
http://archives.postgresql.org/pgsql-hackers/2008-12/msg00248.php

Pg_upgrade.sh is shell script for catalog conversion. It works for
8.3->8.4 upgrade. It will be useful while we will not have better
solution. Disadvantage is that it is korn shell script. The idea is to
rewrite it in PERL which is more portable, but I'm not PERL expert and
currently there is no workable solution.

And what is deadline for it? We can delivery it later with 8.4.1, but
best time for testing is during betas and RC period.

Why is the deadline different than anything else? Surely the deadline
is 11/1/2008, and you missed it.

Admittedly, there is some window for reworking existing patches after
the start of the commitfest, but this patch wasn't even added to the
CommitFest wiki until December 5th, after being sent to the list the
previous day. That's not close, and there's been little discussion of
it on the mailing list since then, and given that it's written in ksh,
it's clearly going to require a complete rewrite to be committable.

Three months after the CommitFest started is not the right time to
start a complete rewrite of a feature that wasn't even on time in the
first place. There is nothing whatever to prevent you from releasing
this on pgfoundry, but the idea that we should spend time on this
rather than the half a dozen (or more) patches that have had far more
work and are probably far closer to being committable strikes me as
100% wrong.

3) preupgrade script
http://archives.postgresql.org/pgsql-hackers/2008-12/msg01273.php

I sent WIP version of this script, which shows how reservation space
feature will be used. This part is not important now. It will be
important for 8.4->8.5 upgrade and cannot be finished until 8.5beta.

...Robert

#8Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Zdenek Kotala (#1)
Re: pg_upgrade project status

Zdenek Kotala wrote:

2) pg_upgrade.sh
http://archives.postgresql.org/pgsql-hackers/2008-12/msg00248.php

Pg_upgrade.sh is shell script for catalog conversion. It works for
8.3->8.4 upgrade.

What's the reason this script uses a postmaster? It seems it would be
easier to control if you used a standalone backend (--single) for each
time you are piping stuff to psql. That would reduce the need to
configure authentication, hostnames, etc etc.

--
Alvaro Herrera http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

#9Merlin Moncure
mmoncure@gmail.com
In reply to: Zdenek Kotala (#1)
Re: pg_upgrade project status

On 1/27/09, Zdenek Kotala <Zdenek.Kotala@sun.com> wrote:

This patch is mandatory for page online conversion and MUST TO be part
of postgreSQL 8.4. if not ... then we will be at the beginning next
year.

Just to clarify, does that mean that your patch has to be in for there
to be any chance of in-place upgrade 8.4->8.5?

merlin

#10Andrew Dunstan
andrew@dunslane.net
In reply to: Heikki Linnakangas (#3)
Re: pg_upgrade project status

Heikki Linnakangas wrote:

Andrew Dunstan wrote:

Zdenek Kotala wrote:

2) pg_upgrade.sh
http://archives.postgresql.org/pgsql-hackers/2008-12/msg00248.php

Pg_upgrade.sh is shell script for catalog conversion. It works for
8.3->8.4 upgrade. It will be useful while we will not have better
solution. Disadvantage is that it is korn shell script. The idea is to
rewrite it in PERL which is more portable, but I'm not PERL expert and
currently there is no workable solution.

I have had a very brief look at this. Translation to perl doesn't
look difficult. I'll see what I can do during the next week or so.

We don't require perl for any other feature, do we? Seems like a
pretty onerous requireemnt for Windows in particular. We do use perl
in the build scripts, but that's only required if you want to compile
from source.

Well, from that POV the only portable thing is to translate it into C.
That's just a whole lot more work (remember initdb?). The perl port for
Windows is easily installable, widely used and well regarded. It doesn't
strike me as too high a price to pay for the ability to do upgrades, but
I'll defer to more Windows-centric commenters.

cheers

andrew

#11Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Dave Page (#5)
Re: pg_upgrade project status

Dave Page wrote:

On Tue, Jan 27, 2009 at 2:39 PM, Alvaro Herrera
<alvherre@commandprompt.com> wrote:

I think it's fairly easy to install Perl on Windows actually. It
doesn't sound too onerous a requirement if you want in-place upgrade;
actually it looks a very reasonable one.

There are installers for it, but given that we made a point of porting
everything to C to avoid using any scripting languages on end-user
machines when we ported to Windows, it seems strange to relax that
'policy' now for convenience.

If you prefer to not have pg_upgrade at all for 8.4, feel free to
request it to be written in C ... But I'm sure that's not what you
meant.

--
Alvaro Herrera http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

#12Tom Lane
tgl@sss.pgh.pa.us
In reply to: Dave Page (#5)
Re: pg_upgrade project status

Dave Page <dpage@pgadmin.org> writes:

On Tue, Jan 27, 2009 at 2:39 PM, Alvaro Herrera
<alvherre@commandprompt.com> wrote:

I think it's fairly easy to install Perl on Windows actually. It
doesn't sound too onerous a requirement if you want in-place upgrade;
actually it looks a very reasonable one.

There are installers for it, but given that we made a point of porting
everything to C to avoid using any scripting languages on end-user
machines when we ported to Windows, it seems strange to relax that
'policy' now for convenience.

Indeed. We might put up with a perl script for awhile for the sake of
development expediency, but the long-term expectation would have to be
that someone would rewrite it in C. Given that, I wonder whether
there's much point in a rewrite into Perl if we already have a working
shell script. I suppose someone will say "but you'll get no testing
from Windows users then..."

regards, tom lane

#13Magnus Hagander
magnus@hagander.net
In reply to: Andrew Dunstan (#10)
Re: pg_upgrade project status

Andrew Dunstan wrote:

Heikki Linnakangas wrote:

Andrew Dunstan wrote:

Zdenek Kotala wrote:

2) pg_upgrade.sh
http://archives.postgresql.org/pgsql-hackers/2008-12/msg00248.php

Pg_upgrade.sh is shell script for catalog conversion. It works for
8.3->8.4 upgrade. It will be useful while we will not have better
solution. Disadvantage is that it is korn shell script. The idea is to
rewrite it in PERL which is more portable, but I'm not PERL expert and
currently there is no workable solution.

I have had a very brief look at this. Translation to perl doesn't
look difficult. I'll see what I can do during the next week or so.

We don't require perl for any other feature, do we? Seems like a
pretty onerous requireemnt for Windows in particular. We do use perl
in the build scripts, but that's only required if you want to compile
from source.

Well, from that POV the only portable thing is to translate it into C.
That's just a whole lot more work (remember initdb?). The perl port for
Windows is easily installable, widely used and well regarded. It doesn't
strike me as too high a price to pay for the ability to do upgrades, but
I'll defer to more Windows-centric commenters.

Either way, there's no point to discuss that in detail until there
actually is a working implementation out there... perl will do fine
until then. Once we have that, we can discuss if doing it in C will be
worthwhile, or if we're just going to require perl for that one feature.

I have a hard time thinking that we'll have wasted a lot of time on
first doing a perl implementation if we have to rewrite it in C later.
The other way around would be a waste though. The amount of time spent
on the perl implementation I expect to be a *lot* less than the
combination of thinking up the *way* to do it in general and the C
implementation time.

//Magnus

#14Dave Page
dpage@pgadmin.org
In reply to: Alvaro Herrera (#11)
Re: pg_upgrade project status

On Tue, Jan 27, 2009 at 2:49 PM, Alvaro Herrera
<alvherre@commandprompt.com> wrote:

Dave Page wrote:

On Tue, Jan 27, 2009 at 2:39 PM, Alvaro Herrera
<alvherre@commandprompt.com> wrote:

I think it's fairly easy to install Perl on Windows actually. It
doesn't sound too onerous a requirement if you want in-place upgrade;
actually it looks a very reasonable one.

There are installers for it, but given that we made a point of porting
everything to C to avoid using any scripting languages on end-user
machines when we ported to Windows, it seems strange to relax that
'policy' now for convenience.

If you prefer to not have pg_upgrade at all for 8.4, feel free to
request it to be written in C ... But I'm sure that's not what you
meant.

I'd rather it was written in an appropriate language before feature
freeze, not in a language that makes it easier for the author but a
shade harder for thousands of users three months into feature freeze.

--
Dave Page
EnterpriseDB UK: http://www.enterprisedb.com

#15Stephen Frost
sfrost@snowman.net
In reply to: Magnus Hagander (#13)
Re: pg_upgrade project status

* Magnus Hagander (magnus@hagander.net) wrote:

Either way, there's no point to discuss that in detail until there
actually is a working implementation out there... perl will do fine
until then. Once we have that, we can discuss if doing it in C will be
worthwhile, or if we're just going to require perl for that one feature.

+1

Stephen

#16Stephen Frost
sfrost@snowman.net
In reply to: Robert Haas (#7)
Re: pg_upgrade project status

* Robert Haas (robertmhaas@gmail.com) wrote:
[pg_upgrade...]

Why is the deadline different than anything else?

err, isn't it because it'd be kind of difficult to do an upgrade script
with large catalog-changing patches outstanding..? I thought some
leeway was given for pg_upgrade specifically due to that, tho perhaps
I'm wrong.

Thanks,

Stephen

#17Robert Haas
robertmhaas@gmail.com
In reply to: Stephen Frost (#16)
Re: pg_upgrade project status

On Tue, Jan 27, 2009 at 10:08 AM, Stephen Frost <sfrost@snowman.net> wrote:

* Robert Haas (robertmhaas@gmail.com) wrote:
[pg_upgrade...]

Why is the deadline different than anything else?

err, isn't it because it'd be kind of difficult to do an upgrade script
with large catalog-changing patches outstanding..? I thought some
leeway was given for pg_upgrade specifically due to that, tho perhaps
I'm wrong.

Sure... if this script had been 100% commitable on 11/1 and now needed
to be adjusted, I can't imagine anyone objecting. But the patch
wasn't submitted until 12/4 and still needs a complete rewrite in a
different programming language as of 1/27. Do you think we would be
arguing about whether to accept Hot Standby now if it were written in
ksh? And that was at least submitted on time.

...Robert

#18Harald Armin Massa
haraldarminmassa@gmail.com
In reply to: Alvaro Herrera (#4)
Re: pg_upgrade project status

I think it's fairly easy to install Perl on Windows actually. It
doesn't sound too onerous a requirement if you want in-place upgrade;
actually it looks a very reasonable one.

Much more reasonable than Korn shell in any case (or any shell for that
matter; I think anything is going to be more of a potentially painful
platform dependency than Perl).

May I humbly recommend to rewrite in Python? That should be as
difficult / easy as PERL, AND there is a very robust py2exe
implementation, which allows to create a single .exe file which
contains everything.

Python is present on all Linux, Windows users are totally comfortable
with .exe files.

Harald

--
GHUM Harald Massa
persuadere et programmare
Harald Armin Massa
Spielberger Straße 49
70435 Stuttgart
0173/9409607
no fx, no carrier pigeon
-
EuroPython 2009 will take place in Birmingham - Stay tuned!

#19Kaare Rasmussen
kaare@jasonic.dk
In reply to: Andrew Dunstan (#2)
Re: pg_upgrade project status

Hi

I have had a very brief look at this. Translation to perl doesn't look
difficult. I'll see what I can do during the next week or so.

Perhaps I can lend you a hand if you need help with this.

--

Med venlig hilsen
Kaare Rasmussen, Jasonic

Jasonic Telefon: +45 3816 2582
Nordre Fasanvej 12
2000 Frederiksberg Email: kaare@jasonic.dk

#20Andrew Dunstan
andrew@dunslane.net
In reply to: Harald Armin Massa (#18)
Re: pg_upgrade project status

Harald Armin Massa wrote:

I think it's fairly easy to install Perl on Windows actually. It
doesn't sound too onerous a requirement if you want in-place upgrade;
actually it looks a very reasonable one.

Much more reasonable than Korn shell in any case (or any shell for that
matter; I think anything is going to be more of a potentially painful
platform dependency than Perl).

May I humbly recommend to rewrite in Python? That should be as
difficult / easy as PERL, AND there is a very robust py2exe
implementation, which allows to create a single .exe file which
contains everything.

Python is present on all Linux, Windows users are totally comfortable
with .exe files.

No, I don't think so ;-) Without getting into language wars, Perl is
already our de facto cross-platform scripting tool. We don't need to be
adding extra knowledge requirements to the project, nor extra build
requirements (right now, perl is already required for building from
source, or when building with MSVC, or when running a buildfarm animal)

cheers

andrew

#21Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Alvaro Herrera (#8)
#22Joshua D. Drake
jd@commandprompt.com
In reply to: Andrew Dunstan (#10)
#23Andrew Dunstan
andrew@dunslane.net
In reply to: Joshua D. Drake (#22)
#24Joshua D. Drake
jd@commandprompt.com
In reply to: Andrew Dunstan (#23)
In reply to: Harald Armin Massa (#18)
#26Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Merlin Moncure (#9)
#27Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Robert Haas (#7)
#28Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Magnus Hagander (#13)
#29Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Dave Page (#14)
#30Heikki Linnakangas
heikki.linnakangas@enterprisedb.com
In reply to: Zdenek Kotala (#27)
#31Heikki Linnakangas
heikki.linnakangas@enterprisedb.com
In reply to: Zdenek Kotala (#28)
#32Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Heikki Linnakangas (#30)
#33Tom Lane
tgl@sss.pgh.pa.us
In reply to: Zdenek Kotala (#26)
#34Dave Page
dpage@pgadmin.org
In reply to: Zdenek Kotala (#29)
#35Heikki Linnakangas
heikki.linnakangas@enterprisedb.com
In reply to: Zdenek Kotala (#32)
#36Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Heikki Linnakangas (#31)
#37Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Tom Lane (#33)
#38Joshua D. Drake
jd@commandprompt.com
In reply to: Zdenek Kotala (#36)
#39Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Heikki Linnakangas (#35)
#40Josh Berkus
josh@agliodbs.com
In reply to: Joshua D. Drake (#38)
#41Heikki Linnakangas
heikki.linnakangas@enterprisedb.com
In reply to: Joshua D. Drake (#38)
#42Joshua D. Drake
jd@commandprompt.com
In reply to: Heikki Linnakangas (#41)
#43Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Dave Page (#34)
#44Dave Page
dpage@pgadmin.org
In reply to: Zdenek Kotala (#43)
#45Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Dave Page (#44)
#46Peter Eisentraut
peter_e@gmx.net
In reply to: Dave Page (#34)
#47Dave Page
dpage@pgadmin.org
In reply to: Zdenek Kotala (#45)
#48Peter Eisentraut
peter_e@gmx.net
In reply to: Tom Lane (#12)
#49Peter Eisentraut
peter_e@gmx.net
In reply to: Magnus Hagander (#13)
#50Dave Page
dpage@pgadmin.org
In reply to: Peter Eisentraut (#46)
#51Peter Eisentraut
peter_e@gmx.net
In reply to: Kaare Rasmussen (#19)
#52Greg Smith
gsmith@gregsmith.com
In reply to: Peter Eisentraut (#46)
#53Peter Eisentraut
peter_e@gmx.net
In reply to: Dave Page (#50)
#54Tom Lane
tgl@sss.pgh.pa.us
In reply to: Peter Eisentraut (#48)
#55Robert Haas
robertmhaas@gmail.com
In reply to: Zdenek Kotala (#27)
#56Robert Haas
robertmhaas@gmail.com
In reply to: Tom Lane (#33)
#57Tom Lane
tgl@sss.pgh.pa.us
In reply to: Robert Haas (#56)
#58Greg Smith
gsmith@gregsmith.com
In reply to: Robert Haas (#56)
#59Heikki Linnakangas
heikki.linnakangas@enterprisedb.com
In reply to: Tom Lane (#57)
#60Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Heikki Linnakangas (#59)
#61Stephen Frost
sfrost@snowman.net
In reply to: Zdenek Kotala (#60)
#62Tom Lane
tgl@sss.pgh.pa.us
In reply to: Zdenek Kotala (#60)
#63Tom Lane
tgl@sss.pgh.pa.us
In reply to: Stephen Frost (#61)
#64Robert Haas
robertmhaas@gmail.com
In reply to: Tom Lane (#62)
#65Tom Lane
tgl@sss.pgh.pa.us
In reply to: Robert Haas (#64)
#66Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Tom Lane (#65)
#67Robert Haas
robertmhaas@gmail.com
In reply to: Zdenek Kotala (#66)
#68Tom Lane
tgl@sss.pgh.pa.us
In reply to: Robert Haas (#67)
#69Robert Haas
robertmhaas@gmail.com
In reply to: Tom Lane (#68)
#70Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#68)
#71Peter Eisentraut
peter_e@gmx.net
In reply to: Tom Lane (#68)
#72Bruce Momjian
bruce@momjian.us
In reply to: Peter Eisentraut (#71)
#73Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Bruce Momjian (#70)
#74Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Tom Lane (#68)
#75Bruce Momjian
bruce@momjian.us
In reply to: Zdenek Kotala (#1)
#76Peter Eisentraut
peter_e@gmx.net
In reply to: Bruce Momjian (#75)
#77Bruce Momjian
bruce@momjian.us
In reply to: Peter Eisentraut (#76)
#78Peter Eisentraut
peter_e@gmx.net
In reply to: Bruce Momjian (#77)
#79Bruce Momjian
bruce@momjian.us
In reply to: Peter Eisentraut (#78)
#80Zdenek Kotala
Zdenek.Kotala@Sun.COM
In reply to: Peter Eisentraut (#78)