Mail thread references in commits

Started by Andrew Dunstanover 9 years ago59 messageshackers
Jump to latest
#1Andrew Dunstan
andrew@dunslane.net

I love seeing references to email threads in commit messages. It would
make them a lot friendlier though if a full http URL were included
instead of just a Message-ID, i.e. instead of <foo1234@bar.com> put
</messages/by-id/foo1234@bar.com&gt;. I know this is
a bit more trouble. but not that much, and it would make it very easy to
follow with just a mouse click.

cheers

andrew

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#2Andres Freund
andres@anarazel.de
In reply to: Andrew Dunstan (#1)
Re: Mail thread references in commits

On November 17, 2016 1:02:38 PM PST, Andrew Dunstan <andrew@dunslane.net> wrote:

I love seeing references to email threads in commit messages. It would
make them a lot friendlier though if a full http URL were included
instead of just a Message-ID, i.e. instead of <foo1234@bar.com> put
</messages/by-id/foo1234@bar.com&gt;. I know this is

a bit more trouble. but not that much, and it would make it very easy
to
follow with just a mouse click.

They're really hard to read though, because lines with e.g. gmail message IDs get very long even without that prefix. Do you look at these in the e-mail or gitweb?

Andres
--
Sent from my Android device with K-9 Mail. Please excuse my brevity.

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#3Robert Haas
robertmhaas@gmail.com
In reply to: Andres Freund (#2)
Re: Mail thread references in commits

On Thu, Nov 17, 2016 at 4:06 PM, Andres Freund <andres@anarazel.de> wrote:

On November 17, 2016 1:02:38 PM PST, Andrew Dunstan <andrew@dunslane.net> wrote:

I love seeing references to email threads in commit messages. It would
make them a lot friendlier though if a full http URL were included
instead of just a Message-ID, i.e. instead of <foo1234@bar.com> put
</messages/by-id/foo1234@bar.com&gt;. I know this is

a bit more trouble. but not that much, and it would make it very easy
to
follow with just a mouse click.

They're really hard to read though, because lines with e.g. gmail message IDs get very long even without that prefix. Do you look at these in the e-mail or gitweb?

Yeah. I really hate having commit messages that are more than 70-75
characters wide, and a message-ID takes you well above that. I wish
we had something like archives.postgresql.org/sha/5bcd5142 instead of
basing everything off the message-ID.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#4Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Andrew Dunstan (#1)
Re: Mail thread references in commits

Andrew Dunstan wrote:

I love seeing references to email threads in commit messages. It would make
them a lot friendlier though if a full http URL were included instead of
just a Message-ID, i.e. instead of <foo1234@bar.com> put
</messages/by-id/foo1234@bar.com&gt;. I know this is a
bit more trouble. but not that much, and it would make it very easy to
follow with just a mouse click.

I completely agree. I would favor something even more convenient, such
as
/messages/by-id/foo1234@bar.com
which just redirects to the full URL. That saves a decent number of
chars.

--
�lvaro Herrera https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#5Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Robert Haas (#3)
Re: Mail thread references in commits

Robert Haas wrote:

On Thu, Nov 17, 2016 at 4:06 PM, Andres Freund <andres@anarazel.de> wrote:

On November 17, 2016 1:02:38 PM PST, Andrew Dunstan <andrew@dunslane.net> wrote:

I love seeing references to email threads in commit messages. It would
make them a lot friendlier though if a full http URL were included
instead of just a Message-ID, i.e. instead of <foo1234@bar.com> put
</messages/by-id/foo1234@bar.com&gt;. I know this is

a bit more trouble. but not that much, and it would make it very easy
to
follow with just a mouse click.

They're really hard to read though, because lines with e.g. gmail message IDs get very long even without that prefix. Do you look at these in the e-mail or gitweb?

Yeah. I really hate having commit messages that are more than 70-75
characters wide, and a message-ID takes you well above that. I wish
we had something like archives.postgresql.org/sha/5bcd5142 instead of
basing everything off the message-ID.

The advantage of using the message-ID is that you can use it while
offline too (very common among this crowd to do stuff while on planes,
since conferences and such are so frequent now), so I wouldn't make that
trade.

--
�lvaro Herrera https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#6Tom Lane
tgl@sss.pgh.pa.us
In reply to: Andrew Dunstan (#1)
Re: Mail thread references in commits

Andrew Dunstan <andrew@dunslane.net> writes:

I love seeing references to email threads in commit messages. It would
make them a lot friendlier though if a full http URL were included
instead of just a Message-ID,

I've intentionally not done that, because it does not seem very
future-proof. The message ids will hopefully be unique indefinitely far
into the future, but the location of our archives could move.

Andres' point about line length is also an issue.

FWIW, I have my home page set up so that I can paste in a message ID and
go directly to the archived thread; there's more than one way to skin
that cat.

regards, tom lane

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#7Andrew Dunstan
andrew@dunslane.net
In reply to: Andres Freund (#2)
Re: Mail thread references in commits

On 11/17/2016 04:06 PM, Andres Freund wrote:

On November 17, 2016 1:02:38 PM PST, Andrew Dunstan <andrew@dunslane.net> wrote:

I love seeing references to email threads in commit messages. It would
make them a lot friendlier though if a full http URL were included
instead of just a Message-ID, i.e. instead of <foo1234@bar.com> put
</messages/by-id/foo1234@bar.com&gt;. I know this is

a bit more trouble. but not that much, and it would make it very easy
to
follow with just a mouse click.

They're really hard to read though, because lines with e.g. gmail message IDs get very long even without that prefix. Do you look at these in the e-mail or gitweb?

Mainly in Thunderbird. But it's cumbersome either way.

I agree gmail message IDs are ugly and insanely long. Personally I would
rather pay the price of one line of ugliness for nice clickability.

To Tom's point that the URL might be ephemeral while the Message-ID is
not, the URL would contain the Message-ID, so even if the base changed
you could adjust to it.

cheers

andrew
**

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#8Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Tom Lane (#6)
Re: Mail thread references in commits

Tom Lane wrote:

Andrew Dunstan <andrew@dunslane.net> writes:

I love seeing references to email threads in commit messages. It would
make them a lot friendlier though if a full http URL were included
instead of just a Message-ID,

I've intentionally not done that, because it does not seem very
future-proof. The message ids will hopefully be unique indefinitely far
into the future, but the location of our archives could move.

It won't. We have far too many in the archives to risk breaking them.
In fact, we (Magnus) went great lengths to implement a system so that
old-style PHP links (of which we have a bunch in very old archives,
including in commit messages) continue to work to this day. We're far
too invested in the system now, because of how successful it has proved
to be.

--
�lvaro Herrera https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#9Joshua D. Drake
jd@commandprompt.com
In reply to: Alvaro Herrera (#8)
Re: Mail thread references in commits

Why not hash the URL? Something like:

Http://postgresopen.org/archive/743257890976432

Where the hash is derived from the message if?

Show quoted text

On Nov 17, 2016 17:40, "Alvaro Herrera" <alvherre@2ndquadrant.com> wrote:

Tom Lane wrote:

Andrew Dunstan <andrew@dunslane.net> writes:

I love seeing references to email threads in commit messages. It would
make them a lot friendlier though if a full http URL were included
instead of just a Message-ID,

I've intentionally not done that, because it does not seem very
future-proof. The message ids will hopefully be unique indefinitely far
into the future, but the location of our archives could move.

It won't. We have far too many in the archives to risk breaking them.
In fact, we (Magnus) went great lengths to implement a system so that
old-style PHP links (of which we have a bunch in very old archives,
including in commit messages) continue to work to this day. We're far
too invested in the system now, because of how successful it has proved
to be.

--
Álvaro Herrera https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#10Dave Page
dpage@pgadmin.org
In reply to: Alvaro Herrera (#8)
Re: Mail thread references in commits

On Fri, Nov 18, 2016 at 1:38 AM, Alvaro Herrera
<alvherre@2ndquadrant.com> wrote:

Tom Lane wrote:

Andrew Dunstan <andrew@dunslane.net> writes:

I love seeing references to email threads in commit messages. It would
make them a lot friendlier though if a full http URL were included
instead of just a Message-ID,

I've intentionally not done that, because it does not seem very
future-proof. The message ids will hopefully be unique indefinitely far
into the future, but the location of our archives could move.

It won't. We have far too many in the archives to risk breaking them.
In fact, we (Magnus) went great lengths to implement a system so that
old-style PHP links (of which we have a bunch in very old archives,
including in commit messages) continue to work to this day. We're far
too invested in the system now, because of how successful it has proved
to be.

Right - we go out of our way to ensure we don't break URLs. That's why
anoncvs.postgresql.org is still actively maintained for example.

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#11Robert Haas
robertmhaas@gmail.com
In reply to: Joshua D. Drake (#9)
Re: Mail thread references in commits

On Thu, Nov 17, 2016 at 10:43 PM, Joshua Drake <jd@commandprompt.com> wrote:

Why not hash the URL? Something like:

Http://postgresopen.org/archive/743257890976432

I suggested that upthread...

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#12Joshua D. Drake
jd@commandprompt.com
In reply to: Robert Haas (#11)
Re: Mail thread references in commits

Sorry didn't see it.

On Nov 18, 2016 12:44, "Robert Haas" <robertmhaas@gmail.com> wrote:

Show quoted text

On Thu, Nov 17, 2016 at 10:43 PM, Joshua Drake <jd@commandprompt.com>
wrote:

Why not hash the URL? Something like:

Http://postgresopen.org/archive/743257890976432

I suggested that upthread...

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

#13Tom Lane
tgl@sss.pgh.pa.us
In reply to: Robert Haas (#11)
Re: Mail thread references in commits

Robert Haas <robertmhaas@gmail.com> writes:

On Thu, Nov 17, 2016 at 10:43 PM, Joshua Drake <jd@commandprompt.com> wrote:

Why not hash the URL? Something like:
Http://postgresopen.org/archive/743257890976432

I suggested that upthread...

Don't like the hashing idea because that would be useless for searching,
eg, one's own local mail archives. Also, if you are looking at a message
in your own mail store when composing a commit message (which I generally
am, don't know about other committers) how are you going to get the hash?
I think it's important to have the message-ID in cleartext.

AFAICS the proposal here is to go from, eg,

Discussion: <CAF4Au4w6rrH_j1bvVhzpOsRiHCog7sGJ3LSX0tY8ZdwhHT88LQ@mail.gmail.com>

to

Discussion: /messages/by-id/CAF4Au4w6rrH_j1bvVhzpOsRiHCog7sGJ3LSX0tY8ZdwhHT88LQ@mail.gmail.com

which is annoying, but the line was overlength already. Maybe we could
drop the Discussion: prefix and just write a URL:

/messages/by-id/CAF4Au4w6rrH_j1bvVhzpOsRiHCog7sGJ3LSX0tY8ZdwhHT88LQ@mail.gmail.com

That's still overlength for gmail message-IDs, though, so I'm not sure
it's worth losing the label for.

regards, tom lane

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#14Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Tom Lane (#13)
Re: Mail thread references in commits

Tom Lane wrote:

AFAICS the proposal here is to go from, eg,

Discussion: <CAF4Au4w6rrH_j1bvVhzpOsRiHCog7sGJ3LSX0tY8ZdwhHT88LQ@mail.gmail.com>

to

Discussion: /messages/by-id/CAF4Au4w6rrH_j1bvVhzpOsRiHCog7sGJ3LSX0tY8ZdwhHT88LQ@mail.gmail.com

which is annoying, but the line was overlength already. Maybe we could
drop the Discussion: prefix and just write a URL:

/messages/by-id/CAF4Au4w6rrH_j1bvVhzpOsRiHCog7sGJ3LSX0tY8ZdwhHT88LQ@mail.gmail.com

If we use our existing URL shortener, as I proposed upthread, it's still
overlength but decent enough:

/messages/by-id/CAF4Au4w6rrH_j1bvVhzpOsRiHCog7sGJ3LSX0tY8ZdwhHT88LQ@mail.gmail.com

I was pretty sure I had proposed this previously and was surprised that
I couldn't find it in the archives anywhere; and sure enough, what I did
was post the idea to sysadmins@postgresql.org (over a year ago) so it
wasn't publicly visible. Anyway, I think the shortener is worth using
(and we can certainly spare the namespace).

--
�lvaro Herrera https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#15Magnus Hagander
magnus@hagander.net
In reply to: Alvaro Herrera (#14)
Re: Mail thread references in commits

On Fri, Nov 18, 2016 at 11:08 PM, Alvaro Herrera <alvherre@2ndquadrant.com>
wrote:

Tom Lane wrote:

AFAICS the proposal here is to go from, eg,

Discussion: <CAF4Au4w6rrH_j1bvVhzpOsRiHCog7sGJ3LSX0tY8Zd

whHT88LQ@mail.gmail.com>

to

Discussion: /messages/by-id/CAF4Au4w6rrH_

j1bvVhzpOsRiHCog7sGJ3LSX0tY8ZdwhHT88LQ@mail.gmail.com

which is annoying, but the line was overlength already. Maybe we could
drop the Discussion: prefix and just write a URL:

/messages/by-id/CAF4Au4w6rrH_

j1bvVhzpOsRiHCog7sGJ3LSX0tY8ZdwhHT88LQ@mail.gmail.com

If we use our existing URL shortener, as I proposed upthread, it's still
overlength but decent enough:

/messages/by-id/CAF4Au4w6rrH_j1bvVhzpOsRiHCog7sGJ3LSX0tY8Zd
whHT88LQ@mail.gmail.com

It does cut it down a bit. And doing it that way would certainly make it
very "long term survivable". If we put a hash in there, we have to store
the hash somewhere. Not that this is hard, but if there is concern about
long-termability.

Another option would be to teach the URL shortener about our messages
specifically, and just use an internal surrogate key we already have for
them. That way it could be something like the current Planet URLs (which
can be for example http://postgr.es/p/3Dl), so much shorter. To post one
people would have to go to a webform and paste in the messageid or existing
URL though -- or we could put a link on the page in the archives.

It would make the URLs actually short, but as mentioned upthread, that
wouldn't work at all if offline. So it'd be a tradeoff between those, but
so are pretty much all other options that don't include the full message-id.

--
Magnus Hagander
Me: http://www.hagander.net/
Work: http://www.redpill-linpro.com/

#16Stephen Frost
sfrost@snowman.net
In reply to: Magnus Hagander (#15)
Re: Mail thread references in commits

Magnus,

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

It would make the URLs actually short, but as mentioned upthread, that
wouldn't work at all if offline. So it'd be a tradeoff between those, but
so are pretty much all other options that don't include the full message-id.

This is a bit of a crazy idea, but in the new list system, couldn't we
add a header which includes "our" surrogate message-id? Or possibly the
entire URL to the message, and maybe the URL for the entire thread?

Thanks!

Stephen

#17Jim Nasby
Jim.Nasby@BlueTreble.com
In reply to: Magnus Hagander (#15)
Re: Mail thread references in commits

On 11/18/16 4:35 PM, Magnus Hagander wrote:

Another option would be to teach the URL shortener about our messages
specifically, and just use an internal surrogate key we already have for
them. That way it could be something like the current Planet URLs (which
can be for example http://postgr.es/p/3Dl), so much shorter. To post one
people would have to go to a webform and paste in the messageid or
existing URL though -- or we could put a link on the page in the archives.

It would make the URLs actually short, but as mentioned upthread, that
wouldn't work at all if offline. So it'd be a tradeoff between those,
but so are pretty much all other options that don't include the full
message-id.

Would it be possible to stick that surrogate key into outgoing list
messages as an X- header?
--
Jim Nasby, Data Architect, Blue Treble Consulting, Austin TX
Experts in Analytics, Data Architecture and PostgreSQL
Data in Trouble? Get it in Treble! http://BlueTreble.com
855-TREBLE2 (855-873-2532)

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#18Andrew Dunstan
andrew@dunslane.net
In reply to: Stephen Frost (#16)
Re: Mail thread references in commits

On 11/18/2016 07:07 PM, Stephen Frost wrote:

Magnus,

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

It would make the URLs actually short, but as mentioned upthread, that
wouldn't work at all if offline. So it'd be a tradeoff between those, but
so are pretty much all other options that don't include the full message-id.

This is a bit of a crazy idea, but in the new list system, couldn't we
add a header which includes "our" surrogate message-id? Or possibly the
entire URL to the message, and maybe the URL for the entire thread?

I had similar ideas.

cheers

andrew

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#19Andres Freund
andres@anarazel.de
In reply to: Tom Lane (#13)
Re: Mail thread references in commits

On November 18, 2016 1:06:18 PM PST, Tom Lane <tgl@sss.pgh.pa.us> wrote:

Robert Haas <robertmhaas@gmail.com> writes:

On Thu, Nov 17, 2016 at 10:43 PM, Joshua Drake <jd@commandprompt.com>

wrote:

Why not hash the URL? Something like:
Http://postgresopen.org/archive/743257890976432

I suggested that upthread...

Don't like the hashing idea because that would be useless for
searching,
eg, one's own local mail archives. Also, if you are looking at a
message
in your own mail store when composing a commit message (which I
generally
am, don't know about other committers) how are you going to get the
hash?
I think it's important to have the message-ID in cleartext.

I do ask of that offline or at least locally. So I won't use something that makes that uncomfortable.

Andres
--
Sent from my Android device with K-9 Mail. Please excuse my brevity.

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#20Michael Paquier
michael@paquier.xyz
In reply to: Andres Freund (#19)
Re: Mail thread references in commits

On Fri, Nov 18, 2016 at 6:05 PM, Andres Freund <andres@anarazel.de> wrote:

I do ask of that offline or at least locally. So I won't use something that makes that uncomfortable.

No committer here. But I do search for mails using the discussion ID
present in the log message by querying in my local mail box copy on a
more or less daily basis. So having a hash will clearly reduce the
flexibility of how things are possible today.
--
Michael

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

#21Andrew Dunstan
andrew@dunslane.net
In reply to: Andres Freund (#19)
#22Magnus Hagander
magnus@hagander.net
In reply to: Stephen Frost (#16)
#23Stephen Frost
sfrost@snowman.net
In reply to: Magnus Hagander (#22)
#24Andrew Dunstan
andrew@dunslane.net
In reply to: Stephen Frost (#23)
#25Magnus Hagander
magnus@hagander.net
In reply to: Andrew Dunstan (#24)
#26Stephen Frost
sfrost@snowman.net
In reply to: Magnus Hagander (#25)
#27Andrew Dunstan
andrew@dunslane.net
In reply to: Stephen Frost (#26)
#28Joshua D. Drake
jd@commandprompt.com
In reply to: Andrew Dunstan (#1)
#29Tom Lane
tgl@sss.pgh.pa.us
In reply to: Andrew Dunstan (#27)
#30Tom Lane
tgl@sss.pgh.pa.us
In reply to: Joshua D. Drake (#28)
#31Joshua D. Drake
jd@commandprompt.com
In reply to: Tom Lane (#30)
#32Magnus Hagander
magnus@hagander.net
In reply to: Tom Lane (#29)
#33Andrew Dunstan
andrew@dunslane.net
In reply to: Magnus Hagander (#32)
#34Magnus Hagander
magnus@hagander.net
In reply to: Andrew Dunstan (#33)
#35Tom Lane
tgl@sss.pgh.pa.us
In reply to: Andrew Dunstan (#33)
#36Magnus Hagander
magnus@hagander.net
In reply to: Tom Lane (#35)
#37Vik Fearing
vik@postgresfriends.org
In reply to: Andrew Dunstan (#33)
#38Andrew Dunstan
andrew@dunslane.net
In reply to: Magnus Hagander (#36)
#39Heikki Linnakangas
heikki.linnakangas@enterprisedb.com
In reply to: Tom Lane (#29)
#40Magnus Hagander
magnus@hagander.net
In reply to: Andrew Dunstan (#38)
#41Magnus Hagander
magnus@hagander.net
In reply to: Magnus Hagander (#40)
#42Tom Lane
tgl@sss.pgh.pa.us
In reply to: Magnus Hagander (#41)
#43Magnus Hagander
magnus@hagander.net
In reply to: Tom Lane (#42)
#44Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Magnus Hagander (#43)
#45Andrew Dunstan
andrew@dunslane.net
In reply to: Alvaro Herrera (#44)
#46Peter Eisentraut
peter_e@gmx.net
In reply to: Magnus Hagander (#41)
#47Heikki Linnakangas
heikki.linnakangas@enterprisedb.com
In reply to: Peter Eisentraut (#46)
#48Andrew Dunstan
andrew@dunslane.net
In reply to: Heikki Linnakangas (#47)
#49Bruce Momjian
bruce@momjian.us
In reply to: Andrew Dunstan (#48)
#50Robert Haas
robertmhaas@gmail.com
In reply to: Bruce Momjian (#49)
#51Tom Lane
tgl@sss.pgh.pa.us
In reply to: Robert Haas (#50)
#52Stephen Frost
sfrost@snowman.net
In reply to: Tom Lane (#51)
#53Robert Haas
robertmhaas@gmail.com
In reply to: Tom Lane (#51)
#54Tom Lane
tgl@sss.pgh.pa.us
In reply to: Stephen Frost (#52)
#55Andres Freund
andres@anarazel.de
In reply to: Tom Lane (#54)
#56Tom Lane
tgl@sss.pgh.pa.us
In reply to: Robert Haas (#53)
#57Tom Lane
tgl@sss.pgh.pa.us
In reply to: Andres Freund (#55)
#58Andres Freund
andres@anarazel.de
In reply to: Tom Lane (#56)
#59Stephen Frost
sfrost@snowman.net
In reply to: Tom Lane (#57)