PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

Started by David Fetterover 9 years ago82 messageshackers
Jump to latest
#1David Fetter
david@fetter.org

Folks,

Please find attached a patch which makes it possible to disallow
UPDATEs and DELETEs which lack a WHERE clause. As this changes query
behavior, I've made the new GUCs PGC_SUSET.

What say?

Thanks to Gurjeet Singh for the idea and Andrew Gierth for the tips
implementing.

Best,
David.
--
David Fetter <david(at)fetter(dot)org> http://fetter.org/
Phone: +1 415 235 3778 AIM: dfetter666 Yahoo!: dfetter
Skype: davidfetter XMPP: david(dot)fetter(at)gmail(dot)com

Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate

Attachments:

training_wheels_001.patchtext/plain; charset=us-asciiDownload+66-0
#2Amit Kapila
amit.kapila16@gmail.com
In reply to: David Fetter (#1)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On Thu, Jul 21, 2016 at 10:27 AM, David Fetter <david@fetter.org> wrote:

Folks,

Please find attached a patch which makes it possible to disallow
UPDATEs and DELETEs which lack a WHERE clause. As this changes query
behavior, I've made the new GUCs PGC_SUSET.

What say?

The use case for this functionality that comes to mind is to avoid
deleting/updating all the data, if user has accidentally missed the
WHERE clause. Do you have other use case for this functionality?
With this functionality, if user needs to actually delete or update
all the rows, then he has to artificially add where clause which seems
slightly inconvenient, but may be such cases are less.

--
With Regards,
Amit Kapila.
EnterpriseDB: http://www.enterprisedb.com

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

#3Jim Mlodgenski
jimmy76@gmail.com
In reply to: David Fetter (#1)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On Thu, Jul 21, 2016 at 12:57 AM, David Fetter <david@fetter.org> wrote:

Folks,

Please find attached a patch which makes it possible to disallow
UPDATEs and DELETEs which lack a WHERE clause. As this changes query
behavior, I've made the new GUCs PGC_SUSET.

What say?

Can't you implement this as a extension? The SQL Firewall project is
already doing some similar concepts by catching prohibiting SQL and
preventing it from executing.
https://github.com/uptimejp/sql_firewall

#4Craig Ringer
craig@2ndquadrant.com
In reply to: Amit Kapila (#2)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On 21 July 2016 at 15:49, Amit Kapila <amit.kapila16@gmail.com> wrote:

On Thu, Jul 21, 2016 at 10:27 AM, David Fetter <david@fetter.org> wrote:

Folks,

Please find attached a patch which makes it possible to disallow
UPDATEs and DELETEs which lack a WHERE clause. As this changes query
behavior, I've made the new GUCs PGC_SUSET.

What say?

The use case for this functionality that comes to mind is to avoid
deleting/updating all the data, if user has accidentally missed the
WHERE clause. Do you have other use case for this functionality?
With this functionality, if user needs to actually delete or update
all the rows, then he has to artificially add where clause which seems
slightly inconvenient, but may be such cases are less.

It's a commonly requested feature. Personally I think it's kind of silly,
but I've had multiple people ask me for it or how to do it too. So whether
or not it's really effective/useful, it's in demand.

Personally I'd rather see it as part of an extension that does other
filtering, I don't find it compelling for core. But I don't really object
either.

--
Craig Ringer http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services

#5Tom Lane
tgl@sss.pgh.pa.us
In reply to: David Fetter (#1)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

David Fetter <david@fetter.org> writes:

Please find attached a patch which makes it possible to disallow
UPDATEs and DELETEs which lack a WHERE clause. As this changes query
behavior, I've made the new GUCs PGC_SUSET.

What say?

-1. This is an express violation of the SQL standard, and at least the
UPDATE case has reasonable use-cases. Moreover, if your desire is to have
training wheels for SQL, there are any number of other well-known gotchas
that are just as dangerous, for example ye olde unintentionally-correlated
subselect:
/messages/by-id/20160714135233.1410.92538@wrigleys.postgresql.org

I wouldn't have any objection to an extension that enforces rules like
these, but I don't think it belongs in core.

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

#6Joshua D. Drake
jd@commandprompt.com
In reply to: Tom Lane (#5)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On 07/21/2016 06:49 AM, Tom Lane wrote:

David Fetter <david@fetter.org> writes:

Please find attached a patch which makes it possible to disallow
UPDATEs and DELETEs which lack a WHERE clause. As this changes query
behavior, I've made the new GUCs PGC_SUSET.

What say?

-1

-1. This is an express violation of the SQL standard, and at least the
UPDATE case has reasonable use-cases. Moreover, if your desire is to have
training wheels for SQL, there are any number of other well-known gotchas
that are just as dangerous, for example ye olde unintentionally-correlated
subselect:
/messages/by-id/20160714135233.1410.92538@wrigleys.postgresql.org

Yes but I used to teach a weak long class on relational databases using
PostgreSQL. The entire week I would iterate over and over and over that
you never use an UPDATE or DELETE without a transaction. Toward the end
of the class we would being do problem sets that included UPDATE and
DELETE. Guess how many would trash their data because they didn't use a
WHERE clause AND didn't use a transaction? 50%

These weren't kids, these weren't neophytes to technology. These were
professionals, many of them programmers (PICK).

I wouldn't have any objection to an extension that enforces rules like
these, but I don't think it belongs in core.

I agree it doesn't need to be in core.

JD

regards, tom lane

--
Command Prompt, Inc. http://the.postgres.company/
+1-503-667-4564
PostgreSQL Centered full stack support, consulting and development.
Everyone appreciates your honesty, until you are honest with them.

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

#7Teodor Sigaev
teodor@sigaev.ru
In reply to: David Fetter (#1)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

Please find attached a patch which makes it possible to disallow
UPDATEs and DELETEs which lack a WHERE clause. As this changes query
behavior, I've made the new GUCs PGC_SUSET.

What say?

DELETE FROM tbl WHERE true; ?

--
Teodor Sigaev E-mail: teodor@sigaev.ru
WWW: http://www.sigaev.ru/

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

#8David Fetter
david@fetter.org
In reply to: Teodor Sigaev (#7)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On Thu, Jul 21, 2016 at 06:20:37PM +0300, Teodor Sigaev wrote:

Please find attached a patch which makes it possible to disallow
UPDATEs and DELETEs which lack a WHERE clause. As this changes query
behavior, I've made the new GUCs PGC_SUSET.

What say?

DELETE FROM tbl WHERE true; ?

I specifically left this possible so the feature when turned on allows
people to do updates with an always-true qualifier if that's what they
actually mean to do.

In case it wasn't clear, unqualified updates and deletes are permitted
by default. This patch allows people to set it so they're disallowed.

Best,
David.
--
David Fetter <david(at)fetter(dot)org> http://fetter.org/
Phone: +1 415 235 3778 AIM: dfetter666 Yahoo!: dfetter
Skype: davidfetter XMPP: david(dot)fetter(at)gmail(dot)com

Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate

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

#9Robert Haas
robertmhaas@gmail.com
In reply to: David Fetter (#8)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On Thu, Jul 21, 2016 at 12:39 PM, David Fetter <david@fetter.org> wrote:

On Thu, Jul 21, 2016 at 06:20:37PM +0300, Teodor Sigaev wrote:

Please find attached a patch which makes it possible to disallow
UPDATEs and DELETEs which lack a WHERE clause. As this changes query
behavior, I've made the new GUCs PGC_SUSET.

What say?

DELETE FROM tbl WHERE true; ?

I specifically left this possible so the feature when turned on allows
people to do updates with an always-true qualifier if that's what they
actually mean to do.

In case it wasn't clear, unqualified updates and deletes are permitted
by default. This patch allows people to set it so they're disallowed.

I join with others in thinking it's a reasonable contrib module. In
fact, I already wrote it for my 2015 PGCon tutorial. Well, the
"delete" part, anyway.

https://github.com/robertmhaas/introduction-to-postgresql-hacking/compare/master...robertmhaas:delete_needs_where

--
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

#10David Fetter
david@fetter.org
In reply to: Jim Mlodgenski (#3)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On Thu, Jul 21, 2016 at 09:21:55AM -0400, Jim Mlodgenski wrote:

On Thu, Jul 21, 2016 at 12:57 AM, David Fetter <david@fetter.org> wrote:

Please find attached a patch which makes it possible to disallow
UPDATEs and DELETEs which lack a WHERE clause. As this changes
query behavior, I've made the new GUCs PGC_SUSET.

What say?

Can't you implement this as a extension?

Yes. In that case, I'd want to make it a contrib extension, as it is
at least in theory attached to specific major versions of the backend.

Also, if it's not in contrib, we can basically forget about having
most people even know about it, let alone get specific separate
permission to use it in production. That's reality, much as I would
like it not to be.

The SQL Firewall project is already doing some similar concepts by
catching prohibiting SQL and preventing it from executing.
https://github.com/uptimejp/sql_firewall

That's very nice, but it illustrates my point perfectly. The
extension is from a current respected and prolific contributor to the
community, but I had no idea that it was there, and by dint of writing
the PostgreSQL Weekly News, I keep closer tabs on external things
PostgreSQL than easily 99.9% of people who deploy it.

Best,
David.
--
David Fetter <david(at)fetter(dot)org> http://fetter.org/
Phone: +1 415 235 3778 AIM: dfetter666 Yahoo!: dfetter
Skype: davidfetter XMPP: david(dot)fetter(at)gmail(dot)com

Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate

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

#11Abhijit Menon-Sen
ams@2ndQuadrant.com
In reply to: Robert Haas (#9)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

At 2016-07-21 12:46:29 -0400, robertmhaas@gmail.com wrote:

I join with others in thinking it's a reasonable contrib module.

I don't like the use of the term "empty" to describe an UPDATE or DELETE
without a WHERE clause.

-- Abhijit

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

#12Robert Haas
robertmhaas@gmail.com
In reply to: Abhijit Menon-Sen (#11)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On Thu, Jul 21, 2016 at 12:49 PM, Abhijit Menon-Sen <ams@2ndquadrant.com> wrote:

At 2016-07-21 12:46:29 -0400, robertmhaas@gmail.com wrote:

I join with others in thinking it's a reasonable contrib module.

I don't like the use of the term "empty" to describe an UPDATE or DELETE
without a WHERE clause.

/me scratches head.

Who used that term?

--
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

#13David Fetter
david@fetter.org
In reply to: Robert Haas (#9)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On Thu, Jul 21, 2016 at 12:46:29PM -0400, Robert Haas wrote:

On Thu, Jul 21, 2016 at 12:39 PM, David Fetter <david@fetter.org> wrote:

On Thu, Jul 21, 2016 at 06:20:37PM +0300, Teodor Sigaev wrote:

Please find attached a patch which makes it possible to disallow
UPDATEs and DELETEs which lack a WHERE clause. As this changes query
behavior, I've made the new GUCs PGC_SUSET.

What say?

DELETE FROM tbl WHERE true; ?

I specifically left this possible so the feature when turned on allows
people to do updates with an always-true qualifier if that's what they
actually mean to do.

In case it wasn't clear, unqualified updates and deletes are permitted
by default. This patch allows people to set it so they're disallowed.

I join with others in thinking it's a reasonable contrib module. In
fact, I already wrote it for my 2015 PGCon tutorial. Well, the
"delete" part, anyway.

https://github.com/robertmhaas/introduction-to-postgresql-hacking/compare/master...robertmhaas:delete_needs_where

I'm happy to write the rest of this as a contrib module. I hope to
get to that this evening.

Best,
David.
--
David Fetter <david(at)fetter(dot)org> http://fetter.org/
Phone: +1 415 235 3778 AIM: dfetter666 Yahoo!: dfetter
Skype: davidfetter XMPP: david(dot)fetter(at)gmail(dot)com

Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate

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

#14David Fetter
david@fetter.org
In reply to: Robert Haas (#12)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On Thu, Jul 21, 2016 at 12:51:50PM -0400, Robert Haas wrote:

On Thu, Jul 21, 2016 at 12:49 PM, Abhijit Menon-Sen <ams@2ndquadrant.com> wrote:

At 2016-07-21 12:46:29 -0400, robertmhaas@gmail.com wrote:

I join with others in thinking it's a reasonable contrib module.

I don't like the use of the term "empty" to describe an UPDATE or DELETE
without a WHERE clause.

/me scratches head.

Who used that term?

I did out of failure to imagine another short way to describe the
situation as I was writing it up. I'd be delighted to change it to
something else.

Best,
David.

Oh, and the bike shed should definitely be puce with blaze orange
polka dots.
--
David Fetter <david(at)fetter(dot)org> http://fetter.org/
Phone: +1 415 235 3778 AIM: dfetter666 Yahoo!: dfetter
Skype: davidfetter XMPP: david(dot)fetter(at)gmail(dot)com

Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate

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

#15Jim Nasby
Jim.Nasby@BlueTreble.com
In reply to: David Fetter (#10)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On 7/21/16 11:46 AM, David Fetter wrote:

Can't you implement this as a extension?

Yes. In that case, I'd want to make it a contrib extension, as it is
at least in theory attached to specific major versions of the backend.

Howso?
--
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) mobile: 512-569-9461

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

#16David Fetter
david@fetter.org
In reply to: Jim Nasby (#15)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On Thu, Jul 21, 2016 at 04:48:37PM -0500, Jim Nasby wrote:

On 7/21/16 11:46 AM, David Fetter wrote:

Can't you implement this as a extension?

Yes. In that case, I'd want to make it a contrib extension, as it is
at least in theory attached to specific major versions of the backend.

Howso?

At least one of the structures it references isn't in a public API.

Best,
David.
--
David Fetter <david(at)fetter(dot)org> http://fetter.org/
Phone: +1 415 235 3778 AIM: dfetter666 Yahoo!: dfetter
Skype: davidfetter XMPP: david(dot)fetter(at)gmail(dot)com

Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate

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

#17David Fetter
david@fetter.org
In reply to: David Fetter (#13)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On Thu, Jul 21, 2016 at 09:52:26AM -0700, David Fetter wrote:

On Thu, Jul 21, 2016 at 12:46:29PM -0400, Robert Haas wrote:

On Thu, Jul 21, 2016 at 12:39 PM, David Fetter <david@fetter.org> wrote:

On Thu, Jul 21, 2016 at 06:20:37PM +0300, Teodor Sigaev wrote:

Please find attached a patch which makes it possible to disallow
UPDATEs and DELETEs which lack a WHERE clause. As this changes query
behavior, I've made the new GUCs PGC_SUSET.

What say?

DELETE FROM tbl WHERE true; ?

I specifically left this possible so the feature when turned on allows
people to do updates with an always-true qualifier if that's what they
actually mean to do.

In case it wasn't clear, unqualified updates and deletes are permitted
by default. This patch allows people to set it so they're disallowed.

I join with others in thinking it's a reasonable contrib module. In
fact, I already wrote it for my 2015 PGCon tutorial. Well, the
"delete" part, anyway.

https://github.com/robertmhaas/introduction-to-postgresql-hacking/compare/master...robertmhaas:delete_needs_where

I'm happy to write the rest of this as a contrib module. I hope to
get to that this evening.

I've renamed it to require_where and contrib-ified.

Best,
David.
--
David Fetter <david(at)fetter(dot)org> http://fetter.org/
Phone: +1 415 235 3778 AIM: dfetter666 Yahoo!: dfetter
Skype: davidfetter XMPP: david(dot)fetter(at)gmail(dot)com

Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate

Attachments:

training_wheels_002.patchtext/plain; charset=us-asciiDownload+188-0
#18Robert Haas
robertmhaas@gmail.com
In reply to: David Fetter (#17)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On Fri, Jul 22, 2016 at 2:38 AM, David Fetter <david@fetter.org> wrote:

I've renamed it to require_where and contrib-ified.

I'm not sure that the Authors section is entirely complete.

--
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

#19David Fetter
david@fetter.org
In reply to: Robert Haas (#18)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On Mon, Jul 25, 2016 at 11:12:24PM -0400, Robert Haas wrote:

On Fri, Jul 22, 2016 at 2:38 AM, David Fetter <david@fetter.org> wrote:

I've renamed it to require_where and contrib-ified.

I'm not sure that the Authors section is entirely complete.

Does this suit?

Best,
David.
--
David Fetter <david(at)fetter(dot)org> http://fetter.org/
Phone: +1 415 235 3778 AIM: dfetter666 Yahoo!: dfetter
Skype: davidfetter XMPP: david(dot)fetter(at)gmail(dot)com

Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate

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

#20Robert Haas
robertmhaas@gmail.com
In reply to: David Fetter (#19)
Re: PoC: Make it possible to disallow WHERE-less UPDATE and DELETE

On Mon, Jul 25, 2016 at 11:38 PM, David Fetter <david@fetter.org> wrote:

On Mon, Jul 25, 2016 at 11:12:24PM -0400, Robert Haas wrote:

On Fri, Jul 22, 2016 at 2:38 AM, David Fetter <david@fetter.org> wrote:

I've renamed it to require_where and contrib-ified.

I'm not sure that the Authors section is entirely complete.

Does this suit?

YFTATP.

--
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

#21Vik Fearing
vik@postgresfriends.org
In reply to: David Fetter (#1)
#22David Fetter
david@fetter.org
In reply to: Robert Haas (#20)
#23Peter Eisentraut
peter_e@gmx.net
In reply to: Vik Fearing (#21)
#24Vik Fearing
vik@postgresfriends.org
In reply to: Peter Eisentraut (#23)
#25Tom Lane
tgl@sss.pgh.pa.us
In reply to: Peter Eisentraut (#23)
#26David Fetter
david@fetter.org
In reply to: Vik Fearing (#24)
#27Vik Fearing
vik@postgresfriends.org
In reply to: David Fetter (#26)
In reply to: Peter Eisentraut (#23)
#29David Fetter
david@fetter.org
In reply to: Vik Fearing (#27)
#30Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#5)
#31Peter Eisentraut
peter_e@gmx.net
In reply to: David Fetter (#22)
#32Jim Nasby
Jim.Nasby@BlueTreble.com
In reply to: Bruce Momjian (#30)
#33David Fetter
david@fetter.org
In reply to: Peter Eisentraut (#31)
#34Robert Haas
robertmhaas@gmail.com
In reply to: David Fetter (#33)
#35Peter Eisentraut
peter_e@gmx.net
In reply to: David Fetter (#33)
#36David Fetter
david@fetter.org
In reply to: Peter Eisentraut (#35)
#37David Fetter
david@fetter.org
In reply to: Peter Eisentraut (#31)
#38Peter Eisentraut
peter_e@gmx.net
In reply to: David Fetter (#37)
#39Thomas Munro
thomas.munro@gmail.com
In reply to: David Fetter (#33)
#40Thomas Munro
thomas.munro@gmail.com
In reply to: Thomas Munro (#39)
#41Rushabh Lathia
rushabh.lathia@gmail.com
In reply to: Thomas Munro (#39)
#42Thomas Munro
thomas.munro@gmail.com
In reply to: Thomas Munro (#39)
#43Thomas Munro
thomas.munro@gmail.com
In reply to: Thomas Munro (#42)
#44Thomas Munro
thomas.munro@gmail.com
In reply to: Thomas Munro (#42)
#45David Fetter
david@fetter.org
In reply to: Thomas Munro (#44)
#46David Fetter
david@fetter.org
In reply to: Thomas Munro (#44)
#47Thomas Munro
thomas.munro@gmail.com
In reply to: David Fetter (#46)
#48Julien Rouhaud
rjuju123@gmail.com
In reply to: Thomas Munro (#47)
#49Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Thomas Munro (#47)
#50David Fetter
david@fetter.org
In reply to: Julien Rouhaud (#48)
#51Julien Rouhaud
rjuju123@gmail.com
In reply to: David Fetter (#50)
#52Peter Eisentraut
peter_e@gmx.net
In reply to: Thomas Munro (#47)
#53Thomas Munro
thomas.munro@gmail.com
In reply to: Julien Rouhaud (#51)
#54Michael Paquier
michael@paquier.xyz
In reply to: Thomas Munro (#53)
#55Michael Paquier
michael@paquier.xyz
In reply to: Thomas Munro (#53)
#56David Fetter
david@fetter.org
In reply to: Thomas Munro (#47)
#57Michael Paquier
michael@paquier.xyz
In reply to: David Fetter (#56)
#58Pavel Stehule
pavel.stehule@gmail.com
In reply to: David Fetter (#1)
#59David Fetter
david@fetter.org
In reply to: Michael Paquier (#57)
#60David Fetter
david@fetter.org
In reply to: Pavel Stehule (#58)
#61David Fetter
david@fetter.org
In reply to: Michael Paquier (#57)
#62David Fetter
david@fetter.org
In reply to: David Fetter (#61)
#63Jim Nasby
Jim.Nasby@BlueTreble.com
In reply to: David Fetter (#62)
#64David Fetter
david@fetter.org
In reply to: Jim Nasby (#63)
#65Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: David Fetter (#64)
#66David Fetter
david@fetter.org
In reply to: Alvaro Herrera (#65)
#67David Fetter
david@fetter.org
In reply to: Alvaro Herrera (#65)
#68David Fetter
david@fetter.org
In reply to: David Fetter (#67)
#69Pavel Stehule
pavel.stehule@gmail.com
In reply to: David Fetter (#67)
#70Michael Paquier
michael@paquier.xyz
In reply to: Pavel Stehule (#69)
#71Bruce Momjian
bruce@momjian.us
In reply to: Michael Paquier (#70)
#72David Fetter
david@fetter.org
In reply to: Bruce Momjian (#71)
#73Bruce Momjian
bruce@momjian.us
In reply to: David Fetter (#72)
#74David Fetter
david@fetter.org
In reply to: Bruce Momjian (#73)
#75Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bruce Momjian (#73)
#76Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Pavel Stehule (#75)
#77Tom Lane
tgl@sss.pgh.pa.us
In reply to: Alvaro Herrera (#76)
#78David Fetter
david@fetter.org
In reply to: Tom Lane (#77)
#79Nico Williams
nico@cryptonector.com
In reply to: Tom Lane (#77)
#80Rod Taylor
rbt@rbt.ca
In reply to: Alvaro Herrera (#76)
#81Michael Paquier
michael@paquier.xyz
In reply to: Rod Taylor (#80)
#82Robert Haas
robertmhaas@gmail.com
In reply to: David Fetter (#78)