PG 13 release notes, first draft

Started by Bruce Momjianalmost 6 years ago197 messageshackers
Jump to latest
#1Bruce Momjian
bruce@momjian.us

I have committed the first draft of the PG 13 release notes. You can
see them here:

https://momjian.us/pgsql_docs/release-13.html

It still needs markup, word wrap, and indenting. The community doc
build should happen in a few hours.

--
Bruce Momjian <bruce@momjian.us> https://momjian.us
EnterpriseDB https://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +
#2David Rowley
dgrowleyml@gmail.com
In reply to: Bruce Momjian (#1)
Re: PG 13 release notes, first draft

On Tue, 5 May 2020 at 15:16, Bruce Momjian <bruce@momjian.us> wrote:

I have committed the first draft of the PG 13 release notes. You can
see them here:

https://momjian.us/pgsql_docs/release-13.html

It still needs markup, word wrap, and indenting. The community doc
build should happen in a few hours.

Thanks a lot for putting that together.

In previous years, during the development of this you've had HTML
comments to include the commit details. Are you going to do that this
year? or did they just disappear in some compilation phase you've
done?

David

#3David Rowley
dgrowleyml@gmail.com
In reply to: David Rowley (#2)
Re: PG 13 release notes, first draft

On Tue, 5 May 2020 at 16:10, David Rowley <dgrowleyml@gmail.com> wrote:

In previous years, during the development of this you've had HTML
comments to include the commit details. Are you going to do that this
year? or did they just disappear in some compilation phase you've
done?

Never mind. I just saw them all in the commit you've pushed.

David

#4Thomas Munro
thomas.munro@gmail.com
In reply to: Bruce Momjian (#1)
Re: PG 13 release notes, first draft

On Tue, May 5, 2020 at 3:16 PM Bruce Momjian <bruce@momjian.us> wrote:

I have committed the first draft of the PG 13 release notes. You can
see them here:

https://momjian.us/pgsql_docs/release-13.html

It still needs markup, word wrap, and indenting. The community doc
build should happen in a few hours.

Hi Bruce,

Thanks! Some feedback:

+2020-04-08 [3985b600f] Support PrefetchBuffer() in recovery.
+-->
+
+<para>
+Speedup recovery by prefetching pages (Thomas Munro)

Unfortunately that commit was just an infrastructural change to allow
the PrefetchBuffer() function to work in recovery, but the main
"prefetching during recovery" patch to actually make use of it to go
faster didn't make it. So this item shouldn't be in the release
notes.

+2020-04-07 [4c04be9b0] Introduce xid8-based functions to replace txid_XXX.
+-->
+
+<para>
+Update all transaction id functions to support xid8 (Thomas Munro)
+</para>
+
+<para>
+They use the same names as the xid data type versions.
+</para>

The names are actually different. How about: "New xid8-based
functions replace the txid family of functions, but the older names
are still supported for backward compatibility."

+2019-10-16 [d5ac14f9c] Use libc version as a collation version on glibc systems
+-->
+
+<para>
+Use the glibc version as the collation version (Thomas Munro)
+</para>
+
+<para>
+If the glibc version changes, a warning will be issued when a
mismatching collation is used.
+</para>

I would add a qualifier "in some cases", since it doesn't work for
default collations yet. (That'll now have to wait for 14).

#5Fabien COELHO
coelho@cri.ensmp.fr
In reply to: Bruce Momjian (#1)
Re: PG 13 release notes, first draft

Hello Bruce,

I have committed the first draft of the PG 13 release notes. You can
see them here:

https://momjian.us/pgsql_docs/release-13.html

It still needs markup, word wrap, and indenting. The community doc
build should happen in a few hours.

Thanks for working on this.

* Add CREATE DATABASE LOCALE option (Fabien COELHO)
* Add function gen_random_uuid to generate version 4 UUIDs (Fabien COELHO)

I'm not responsible for these, I just reviewed them. ISTM that the author
for both is the committer, Peter Eisentraut.

Maybe there is something amiss in the commit-log-to-release-notes script?
My name clearly appears after "reviewed by:?"

* "DOCUMENT THE DEFAULT GENERATION METHOD"
=> The default is still to generate data client-side.

I do not see a "documentation" section, whereas there has been significant
doc changes, such as function table layouts (Tom), glossary (Corey,
Jᅵrgen, Roger, Alvarro), binary/text string functions (Karl) and possibly
others. Having a good documentation contributes to making postgres a very
good tool, improving it is is not very glamorous, ISTM that such
contributions should not be overlooked.

--
Fabien.

#6Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bruce Momjian (#1)
Re: PG 13 release notes, first draft

Hi

út 5. 5. 2020 v 5:16 odesílatel Bruce Momjian <bruce@momjian.us> napsal:

I have committed the first draft of the PG 13 release notes. You can
see them here:

https://momjian.us/pgsql_docs/release-13.html

It still needs markup, word wrap, and indenting. The community doc
build should happen in a few hours.

There is not note about new polymorphic type "anycompatible"

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=24e2885ee304cb6a94fdfc25a1a108344ed9f4f7

Show quoted text

--
Bruce Momjian <bruce@momjian.us> https://momjian.us
EnterpriseDB https://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +
#7Julien Rouhaud
rjuju123@gmail.com
In reply to: Pavel Stehule (#6)
Re: PG 13 release notes, first draft

Hi,

On Tue, May 5, 2020 at 7:47 AM Pavel Stehule <pavel.stehule@gmail.com> wrote:

Hi

út 5. 5. 2020 v 5:16 odesílatel Bruce Momjian <bruce@momjian.us> napsal:

I have committed the first draft of the PG 13 release notes. You can
see them here:

https://momjian.us/pgsql_docs/release-13.html

It still needs markup, word wrap, and indenting. The community doc
build should happen in a few hours.

There is not note about new polymorphic type "anycompatible"

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=24e2885ee304cb6a94fdfc25a1a108344ed9f4f7

There's also no note about avoiding full GIN index scan
(https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=4b754d6c16e16cc1a1adf12ab0f48603069a0efd).
That's a corner case optimization but it can be a huge improvement
when you hit the problem.

#8Juan José Santamaría Flecha
juanjo.santamaria@gmail.com
In reply to: Bruce Momjian (#1)
Re: PG 13 release notes, first draft

On Tue, May 5, 2020 at 5:16 AM Bruce Momjian <bruce@momjian.us> wrote:

I have committed the first draft of the PG 13 release notes. You can
see them here:

https://momjian.us/pgsql_docs/release-13.html

It still needs markup, word wrap, and indenting. The community doc
build should happen in a few hours.

There is one entry "Add support for collation versions on Windows" where I
am quoted as author. Actually, I was a reviewer, the author is Thomas Munro.

Also, I am credited as sole author of "Allow to_date/to_timestamp to
recognize non-English month/day names", when the case is that Tom Lane did
more than a few cosmetics changes when committing and I think he should be
quoted as co-author (if he agrees).

Regards,

Juan José Santamaría Flecha

#9Bruce Momjian
bruce@momjian.us
In reply to: Bruce Momjian (#1)
Re: PG 13 release notes, first draft

On Mon, May 4, 2020 at 11:16:00PM -0400, Bruce Momjian wrote:

I have committed the first draft of the PG 13 release notes. You can
see them here:

https://momjian.us/pgsql_docs/release-13.html

It still needs markup, word wrap, and indenting. The community doc
build should happen in a few hours.

I wanted to point out there are 180 changes listed in the release notes,
which very closely matches the count of previous major releases. I
don't think there are as many major _features_ in this release as
previous ones.

Also, I see little to no progress on these features in PG 13:

* online checksum changes
* zheap
* sharding

--
Bruce Momjian <bruce@momjian.us> https://momjian.us
EnterpriseDB https://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +
#10John Naylor
john.naylor@enterprisedb.com
In reply to: Bruce Momjian (#1)
Re: PG 13 release notes, first draft

Hi Bruce, thanks for working on this again!

+<para>
+Allow UTF-8 escapes, e.g., E'\u####', in clients that don't use UTF-8
encoding (Tom Lane)
+</para>

I believe the term we want here is "Unicode escapes". This patch is
about the server encoding, which formerly needed to be utf-8 for
non-ascii characters. (I think the client encoding doesn't matter as
long as ascii bytes are represented.)

+<para>
+The UTF-8 characters must be available in the server encoding.
+</para>

Same here, s/UTF-8/Unicode/.

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

#11Bruce Momjian
bruce@momjian.us
In reply to: Fabien COELHO (#5)
Re: PG 13 release notes, first draft

On Tue, May 5, 2020 at 07:43:09AM +0200, Fabien COELHO wrote:

Hello Bruce,

I have committed the first draft of the PG 13 release notes. You can
see them here:

https://momjian.us/pgsql_docs/release-13.html

It still needs markup, word wrap, and indenting. The community doc
build should happen in a few hours.

Thanks for working on this.

* Add CREATE DATABASE LOCALE option (Fabien COELHO)
* Add function gen_random_uuid to generate version 4 UUIDs (Fabien COELHO)

I'm not responsible for these, I just reviewed them. ISTM that the author
for both is the committer, Peter Eisentraut.

Maybe there is something amiss in the commit-log-to-release-notes script?
My name clearly appears after "reviewed by:?"

Sorry, those were all my mistaken reading of the commit message.

* "DOCUMENT THE DEFAULT GENERATION METHOD"
=> The default is still to generate data client-side.

My point is that the docs are not clear about this. Can you fix it?

I do not see a "documentation" section, whereas there has been significant
doc changes, such as function table layouts (Tom), glossary (Corey, J�rgen,

I did list the glossary.

Roger, Alvarro), binary/text string functions (Karl) and possibly others.

I wasn't sure documentation _layout_ changes should be listed.

Having a good documentation contributes to making postgres a very good tool,
improving it is is not very glamorous, ISTM that such contributions should
not be overlooked.

Yes, I would be good to know from others if that kind of stuff should
be included.

--
Bruce Momjian <bruce@momjian.us> https://momjian.us
EnterpriseDB https://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +
#12Bruce Momjian
bruce@momjian.us
In reply to: Thomas Munro (#4)
Re: PG 13 release notes, first draft

On Tue, May 5, 2020 at 04:14:42PM +1200, Thomas Munro wrote:

On Tue, May 5, 2020 at 3:16 PM Bruce Momjian <bruce@momjian.us> wrote:

I have committed the first draft of the PG 13 release notes. You can
see them here:

https://momjian.us/pgsql_docs/release-13.html

It still needs markup, word wrap, and indenting. The community doc
build should happen in a few hours.

Hi Bruce,

Thanks! Some feedback:

+2020-04-08 [3985b600f] Support PrefetchBuffer() in recovery.
+-->
+
+<para>
+Speedup recovery by prefetching pages (Thomas Munro)

Unfortunately that commit was just an infrastructural change to allow
the PrefetchBuffer() function to work in recovery, but the main
"prefetching during recovery" patch to actually make use of it to go
faster didn't make it. So this item shouldn't be in the release
notes.

Agreed, removed.

+2020-04-07 [4c04be9b0] Introduce xid8-based functions to replace txid_XXX.
+-->
+
+<para>
+Update all transaction id functions to support xid8 (Thomas Munro)
+</para>
+
+<para>
+They use the same names as the xid data type versions.
+</para>

The names are actually different. How about: "New xid8-based
functions replace the txid family of functions, but the older names
are still supported for backward compatibility."

Agreed.

+2019-10-16 [d5ac14f9c] Use libc version as a collation version on glibc systems
+-->
+
+<para>
+Use the glibc version as the collation version (Thomas Munro)
+</para>
+
+<para>
+If the glibc version changes, a warning will be issued when a
mismatching collation is used.
+</para>

I would add a qualifier "in some cases", since it doesn't work for
default collations yet. (That'll now have to wait for 14).

Done.

--
Bruce Momjian <bruce@momjian.us> https://momjian.us
EnterpriseDB https://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +
#13Bruce Momjian
bruce@momjian.us
In reply to: Pavel Stehule (#6)
Re: PG 13 release notes, first draft

On Tue, May 5, 2020 at 07:46:34AM +0200, Pavel Stehule wrote:

Hi

�t 5. 5. 2020 v�5:16 odes�latel Bruce Momjian <bruce@momjian.us> napsal:

I have committed the first draft of the PG 13 release notes.� You can
see them here:

� � � � https://momjian.us/pgsql_docs/release-13.html

It still needs markup, word wrap, and indenting.� The community doc
build should happen in a few hours.

There is not note about new polymorphic type "anycompatible"

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=
24e2885ee304cb6a94fdfc25a1a108344ed9f4f7

Sorry I missed that. Must have thought it was non-visible work that was
part of another features. Here is the new text:

Add polymorphic data types for use by functions requiring
compatible arguments (Pavel Stehule)

The new data types are anycompatible, anycompatiblearray,
anycompatiblenonarray, and anycompatiblerange.

--
Bruce Momjian <bruce@momjian.us> https://momjian.us
EnterpriseDB https://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +
#14Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bruce Momjian (#13)
Re: PG 13 release notes, first draft

út 5. 5. 2020 v 16:18 odesílatel Bruce Momjian <bruce@momjian.us> napsal:

On Tue, May 5, 2020 at 07:46:34AM +0200, Pavel Stehule wrote:

Hi

út 5. 5. 2020 v 5:16 odesílatel Bruce Momjian <bruce@momjian.us> napsal:

I have committed the first draft of the PG 13 release notes. You can
see them here:

https://momjian.us/pgsql_docs/release-13.html

It still needs markup, word wrap, and indenting. The community doc
build should happen in a few hours.

There is not note about new polymorphic type "anycompatible"

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=
24e2885ee304cb6a94fdfc25a1a108344ed9f4f7

Sorry I missed that. Must have thought it was non-visible work that was
part of another features. Here is the new text:

Add polymorphic data types for use by functions requiring
compatible arguments (Pavel Stehule)

The new data types are anycompatible, anycompatiblearray,
anycompatiblenonarray, and anycompatiblerange.

no problem, thank you

Pavel

Show quoted text

--
Bruce Momjian <bruce@momjian.us> https://momjian.us
EnterpriseDB https://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +
#15Bruce Momjian
bruce@momjian.us
In reply to: Julien Rouhaud (#7)
Re: PG 13 release notes, first draft

On Tue, May 5, 2020 at 08:10:54AM +0200, Julien Rouhaud wrote:

Hi,

On Tue, May 5, 2020 at 7:47 AM Pavel Stehule <pavel.stehule@gmail.com> wrote:

Hi

�t 5. 5. 2020 v 5:16 odes�latel Bruce Momjian <bruce@momjian.us> napsal:

I have committed the first draft of the PG 13 release notes. You can
see them here:

https://momjian.us/pgsql_docs/release-13.html

It still needs markup, word wrap, and indenting. The community doc
build should happen in a few hours.

There is not note about new polymorphic type "anycompatible"

https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=24e2885ee304cb6a94fdfc25a1a108344ed9f4f7

There's also no note about avoiding full GIN index scan
(https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=4b754d6c16e16cc1a1adf12ab0f48603069a0efd).
That's a corner case optimization but it can be a huge improvement
when you hit the problem.

OK, I have added this item:

Allow GIN indexes to more efficiently handle NOT restrictions (Nikita
Glukhov, Alexander Korotkov, Tom Lane, Julien Rouhaud)

--
Bruce Momjian <bruce@momjian.us> https://momjian.us
EnterpriseDB https://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +
#16Bruce Momjian
bruce@momjian.us
In reply to: Juan José Santamaría Flecha (#8)
Re: PG 13 release notes, first draft

On Tue, May 5, 2020 at 10:07:35AM +0200, Juan Jos� Santamar�a Flecha wrote:

On Tue, May 5, 2020 at 5:16 AM Bruce Momjian <bruce@momjian.us> wrote:

I have committed the first draft of the PG 13 release notes.� You can
see them here:

� � � � https://momjian.us/pgsql_docs/release-13.html

It still needs markup, word wrap, and indenting.� The community doc
build should happen in a few hours.

�
There is one entry "Add support for collation versions on Windows" where I am
quoted as author. Actually, I was a reviewer, the author is Thomas Munro.

Oops, my mistake, fixed.

Also, I am credited as sole author of "Allow to_date/to_timestamp to recognize
non-English month/day names", when the case is that Tom Lane did more than a
few cosmetics changes when committing and I think he should be quoted as
co-author (if he agrees).

OK, updated. The text was:

Juan Jos� Santamar�a Flecha, reviewed and modified by me,

and with reviewed first, and the generic term modified, I had assumed
you would the the only one listed. Fixed.

--
Bruce Momjian <bruce@momjian.us> https://momjian.us
EnterpriseDB https://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +
#17Bruce Momjian
bruce@momjian.us
In reply to: John Naylor (#10)
Re: PG 13 release notes, first draft

On Tue, May 5, 2020 at 09:20:39PM +0800, John Naylor wrote:

Hi Bruce, thanks for working on this again!

+<para>
+Allow UTF-8 escapes, e.g., E'\u####', in clients that don't use UTF-8
encoding (Tom Lane)
+</para>

I believe the term we want here is "Unicode escapes". This patch is
about the server encoding, which formerly needed to be utf-8 for
non-ascii characters. (I think the client encoding doesn't matter as
long as ascii bytes are represented.)

+<para>
+The UTF-8 characters must be available in the server encoding.
+</para>

Same here, s/UTF-8/Unicode/.

OK, new text is:

Allow Unicode escapes, e.g., E'\u####', in clients that don't use UTF-8
encoding (Tom Lane)

The Unicode characters must be available in the server encoding.

I kept the "UTF-8 encoding" since that is the only Unicode encoding we
support.

--
Bruce Momjian <bruce@momjian.us> https://momjian.us
EnterpriseDB https://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +
#18Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#11)
Re: PG 13 release notes, first draft

On 2020-May-05, Bruce Momjian wrote:

On Tue, May 5, 2020 at 07:43:09AM +0200, Fabien COELHO wrote:

I do not see a "documentation" section, whereas there has been significant
doc changes, such as function table layouts (Tom), glossary (Corey, J�rgen,

I did list the glossary.

Please do list J�rgen, Corey and Roger as authors of the glossary.

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

#19Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#1)
Re: PG 13 release notes, first draft

In this item

+<listitem>
+<!--
+Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
+2020-04-20 [5fc703946] Add ALTER .. NO DEPENDS ON
+-->
+
+<para>
+Add the ability to remove a function's dependency on an extension (Alvaro Herrera)
+</para>
+
+<para>
+The syntax is ALTER FUNCTION .. NO DEPENDS ON.
+</para>
+
+</listitem>

This works for several object types, not just a functions. I propose

Add the ability to remove an object's dependency on an extension (�lvaro Herrera)

The object can be a function, materialized view, index, or trigger.
The syntax is ALTER .. NO DEPENDS ON.

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

#20Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Alvaro Herrera (#18)
Re: PG 13 release notes, first draft

On 2020-May-05, Alvaro Herrera wrote:

On 2020-May-05, Bruce Momjian wrote:

On Tue, May 5, 2020 at 07:43:09AM +0200, Fabien COELHO wrote:

I do not see a "documentation" section, whereas there has been significant
doc changes, such as function table layouts (Tom), glossary (Corey, J�rgen,

I did list the glossary.

Please do list J�rgen, Corey and Roger as authors of the glossary.

(Actually I should be listed as well, as the time I spent on it was
considerable.)

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

#21Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#18)
#22Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#20)
#23Andrew Dunstan
andrew@dunslane.net
In reply to: Bruce Momjian (#1)
#24Bruce Momjian
bruce@momjian.us
In reply to: Andrew Dunstan (#23)
#25Corey Huinker
corey.huinker@gmail.com
In reply to: Alvaro Herrera (#20)
#26Justin Pryzby
pryzby@telsasoft.com
In reply to: Bruce Momjian (#1)
#27Bruce Momjian
bruce@momjian.us
In reply to: Justin Pryzby (#26)
#28Justin Pryzby
pryzby@telsasoft.com
In reply to: Bruce Momjian (#27)
#29Justin Pryzby
pryzby@telsasoft.com
In reply to: Justin Pryzby (#26)
#30Bruce Momjian
bruce@momjian.us
In reply to: Justin Pryzby (#28)
#31Bruce Momjian
bruce@momjian.us
In reply to: Justin Pryzby (#29)
#32Jeff Davis
pgsql@j-davis.com
In reply to: Bruce Momjian (#1)
#33Justin Pryzby
pryzby@telsasoft.com
In reply to: Bruce Momjian (#30)
#34Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#27)
#35Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#31)
#36David Steele
david@pgmasters.net
In reply to: Alvaro Herrera (#34)
#37Justin Pryzby
pryzby@telsasoft.com
In reply to: Alvaro Herrera (#35)
#38Bruce Momjian
bruce@momjian.us
In reply to: Jeff Davis (#32)
#39Bruce Momjian
bruce@momjian.us
In reply to: Justin Pryzby (#33)
#40Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#34)
#41Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#35)
#42Tom Lane
tgl@sss.pgh.pa.us
In reply to: Alvaro Herrera (#35)
#43Bruce Momjian
bruce@momjian.us
In reply to: Bruce Momjian (#31)
#44Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#42)
#45Justin Pryzby
pryzby@telsasoft.com
In reply to: Bruce Momjian (#43)
#46Bruce Momjian
bruce@momjian.us
In reply to: Justin Pryzby (#45)
#47Fabien COELHO
coelho@cri.ensmp.fr
In reply to: Bruce Momjian (#11)
#48Andrey Borodin
amborodin@acm.org
In reply to: Bruce Momjian (#1)
#49Noah Misch
noah@leadboat.com
In reply to: Bruce Momjian (#1)
#50Alexander Korotkov
aekorotkov@gmail.com
In reply to: Bruce Momjian (#1)
#51Amit Langote
Langote_Amit_f8@lab.ntt.co.jp
In reply to: Bruce Momjian (#1)
#52Chapman Flack
chap@anastigmatix.net
In reply to: Bruce Momjian (#17)
#53Chapman Flack
chap@anastigmatix.net
In reply to: Chapman Flack (#52)
#54Bruce Momjian
bruce@momjian.us
In reply to: Fabien COELHO (#47)
#55Bruce Momjian
bruce@momjian.us
In reply to: Andrey Borodin (#48)
#56Bruce Momjian
bruce@momjian.us
In reply to: Noah Misch (#49)
#57Bruce Momjian
bruce@momjian.us
In reply to: Alexander Korotkov (#50)
#58Justin Pryzby
pryzby@telsasoft.com
In reply to: Bruce Momjian (#55)
#59Noah Misch
noah@leadboat.com
In reply to: Bruce Momjian (#56)
#60Andrey Borodin
amborodin@acm.org
In reply to: Bruce Momjian (#55)
#61Fabien COELHO
coelho@cri.ensmp.fr
In reply to: Bruce Momjian (#54)
#62Bruce Momjian
bruce@momjian.us
In reply to: Amit Langote (#51)
#63Bruce Momjian
bruce@momjian.us
In reply to: Bruce Momjian (#62)
#64Bruce Momjian
bruce@momjian.us
In reply to: Fabien COELHO (#61)
#65Bruce Momjian
bruce@momjian.us
In reply to: Justin Pryzby (#58)
#66Bruce Momjian
bruce@momjian.us
In reply to: Andrey Borodin (#60)
#67Bruce Momjian
bruce@momjian.us
In reply to: Noah Misch (#59)
#68Bruce Momjian
bruce@momjian.us
In reply to: Chapman Flack (#52)
#69Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#62)
#70Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#64)
#71Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#69)
#72Amit Langote
Langote_Amit_f8@lab.ntt.co.jp
In reply to: Bruce Momjian (#71)
#73Amit Langote
Langote_Amit_f8@lab.ntt.co.jp
In reply to: Bruce Momjian (#62)
#74Bruce Momjian
bruce@momjian.us
In reply to: Amit Langote (#72)
#75Bruce Momjian
bruce@momjian.us
In reply to: Amit Langote (#73)
#76Alexander Korotkov
aekorotkov@gmail.com
In reply to: Bruce Momjian (#57)
#77Chapman Flack
chap@anastigmatix.net
In reply to: Bruce Momjian (#68)
In reply to: Bruce Momjian (#1)
#79Michael Paquier
michael@paquier.xyz
In reply to: Bruce Momjian (#1)
#80Amit Langote
Langote_Amit_f8@lab.ntt.co.jp
In reply to: Bruce Momjian (#75)
#81Noah Misch
noah@leadboat.com
In reply to: Bruce Momjian (#67)
#82Fabien COELHO
coelho@cri.ensmp.fr
In reply to: Tom Lane (#70)
#83Peter Eisentraut
peter_e@gmx.net
In reply to: Bruce Momjian (#41)
#84Amit Kapila
amit.kapila16@gmail.com
In reply to: Bruce Momjian (#1)
#85Etsuro Fujita
fujita.etsuro@lab.ntt.co.jp
In reply to: Amit Langote (#80)
#86Justin Pryzby
pryzby@telsasoft.com
In reply to: Bruce Momjian (#1)
#87Amit Kapila
amit.kapila16@gmail.com
In reply to: Amit Kapila (#84)
#88Tatsuro Yamada
tatsuro.yamada.tf@nttcom.co.jp
In reply to: Bruce Momjian (#1)
#89Bruce Momjian
bruce@momjian.us
In reply to: Alexander Korotkov (#76)
#90Alexander Korotkov
aekorotkov@gmail.com
In reply to: Bruce Momjian (#89)
#91Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#1)
#92Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Alvaro Herrera (#91)
#93Bruce Momjian
bruce@momjian.us
In reply to: Alexander Korotkov (#90)
#94Bruce Momjian
bruce@momjian.us
In reply to: Chapman Flack (#77)
#95Bruce Momjian
bruce@momjian.us
In reply to: Peter Geoghegan (#78)
#96Bruce Momjian
bruce@momjian.us
In reply to: Michael Paquier (#79)
#97Bruce Momjian
bruce@momjian.us
In reply to: Amit Langote (#80)
In reply to: Bruce Momjian (#95)
#99Bruce Momjian
bruce@momjian.us
In reply to: Noah Misch (#81)
#100Bruce Momjian
bruce@momjian.us
In reply to: Peter Geoghegan (#98)
#101Bruce Momjian
bruce@momjian.us
In reply to: Fabien COELHO (#82)
#102Bruce Momjian
bruce@momjian.us
In reply to: Amit Kapila (#84)
#103Bruce Momjian
bruce@momjian.us
In reply to: Amit Kapila (#87)
#104Bruce Momjian
bruce@momjian.us
In reply to: Justin Pryzby (#86)
In reply to: Bruce Momjian (#100)
#106Bruce Momjian
bruce@momjian.us
In reply to: Tatsuro Yamada (#88)
#107Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#101)
#108Justin Pryzby
pryzby@telsasoft.com
In reply to: Bruce Momjian (#1)
#109Justin Pryzby
pryzby@telsasoft.com
In reply to: Amit Kapila (#87)
#110Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#91)
#111Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#107)
#112Bruce Momjian
bruce@momjian.us
In reply to: Justin Pryzby (#109)
#113Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#92)
#114Bruce Momjian
bruce@momjian.us
In reply to: Justin Pryzby (#108)
#115Bruce Momjian
bruce@momjian.us
In reply to: Peter Geoghegan (#105)
#116Bruce Momjian
bruce@momjian.us
In reply to: Bruce Momjian (#115)
#117Amit Langote
Langote_Amit_f8@lab.ntt.co.jp
In reply to: Bruce Momjian (#97)
In reply to: Bruce Momjian (#116)
#119Michael Paquier
michael@paquier.xyz
In reply to: Bruce Momjian (#96)
#120Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#94)
#121Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#111)
#122Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#111)
#123Bruce Momjian
bruce@momjian.us
In reply to: Michael Paquier (#119)
#124Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#120)
#125Amit Kapila
amit.kapila16@gmail.com
In reply to: Bruce Momjian (#112)
#126Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#122)
#127Tatsuro Yamada
tatsuro.yamada.tf@nttcom.co.jp
In reply to: Bruce Momjian (#106)
#128Amit Kapila
amit.kapila16@gmail.com
In reply to: Justin Pryzby (#109)
#129Chapman Flack
chap@anastigmatix.net
In reply to: Bruce Momjian (#124)
#130Bruce Momjian
bruce@momjian.us
In reply to: Chapman Flack (#129)
#131Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#130)
#132Kyotaro Horiguchi
horikyota.ntt@gmail.com
In reply to: Bruce Momjian (#99)
#133Fabien COELHO
coelho@cri.ensmp.fr
In reply to: Bruce Momjian (#126)
#134Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#62)
#135Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#131)
#136Bruce Momjian
bruce@momjian.us
In reply to: Kyotaro Horiguchi (#132)
#137Bruce Momjian
bruce@momjian.us
In reply to: Fabien COELHO (#133)
#138Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#134)
#139Kyotaro Horiguchi
horikyota.ntt@gmail.com
In reply to: Bruce Momjian (#136)
#140Fabien COELHO
coelho@cri.ensmp.fr
In reply to: Bruce Momjian (#137)
#141Bruce Momjian
bruce@momjian.us
In reply to: Kyotaro Horiguchi (#139)
#142Bruce Momjian
bruce@momjian.us
In reply to: Fabien COELHO (#140)
#143Kyotaro Horiguchi
horikyota.ntt@gmail.com
In reply to: Bruce Momjian (#141)
#144Bruce Momjian
bruce@momjian.us
In reply to: Kyotaro Horiguchi (#143)
#145Fabien COELHO
coelho@cri.ensmp.fr
In reply to: Bruce Momjian (#142)
#146Kyotaro Horiguchi
horikyota.ntt@gmail.com
In reply to: Bruce Momjian (#144)
#147Bruce Momjian
bruce@momjian.us
In reply to: Fabien COELHO (#145)
#148Peter Eisentraut
peter_e@gmx.net
In reply to: Justin Pryzby (#109)
In reply to: Peter Eisentraut (#148)
#150Justin Pryzby
pryzby@telsasoft.com
In reply to: Peter Geoghegan (#149)
#151Fujii Masao
masao.fujii@gmail.com
In reply to: Bruce Momjian (#1)
#152Bruce Momjian
bruce@momjian.us
In reply to: Fujii Masao (#151)
#153Fujii Masao
masao.fujii@gmail.com
In reply to: Bruce Momjian (#152)
#154Bruce Momjian
bruce@momjian.us
In reply to: Fujii Masao (#153)
#155Daniel Gustafsson
daniel@yesql.se
In reply to: Bruce Momjian (#1)
#156Bruce Momjian
bruce@momjian.us
In reply to: Daniel Gustafsson (#155)
#157Daniel Gustafsson
daniel@yesql.se
In reply to: Bruce Momjian (#1)
#158Bruce Momjian
bruce@momjian.us
In reply to: Daniel Gustafsson (#157)
#159Masahiko Sawada
sawada.mshk@gmail.com
In reply to: Bruce Momjian (#158)
#160Bruce Momjian
bruce@momjian.us
In reply to: Masahiko Sawada (#159)
#161Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#160)
#162Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Alvaro Herrera (#161)
#163Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#162)
In reply to: Bruce Momjian (#163)
#165Bruce Momjian
bruce@momjian.us
In reply to: Peter Geoghegan (#164)
In reply to: Bruce Momjian (#165)
#167Bruce Momjian
bruce@momjian.us
In reply to: Peter Geoghegan (#166)
In reply to: Bruce Momjian (#167)
#169David G. Johnston
david.g.johnston@gmail.com
In reply to: Peter Geoghegan (#166)
#170Bruce Momjian
bruce@momjian.us
In reply to: David G. Johnston (#169)
In reply to: Bruce Momjian (#170)
In reply to: Peter Geoghegan (#171)
#173Bruce Momjian
bruce@momjian.us
In reply to: Peter Geoghegan (#172)
#174Justin Pryzby
pryzby@telsasoft.com
In reply to: Justin Pryzby (#150)
#175Amit Langote
Langote_Amit_f8@lab.ntt.co.jp
In reply to: Amit Langote (#117)
#176Jonathan S. Katz
jkatz@postgresql.org
In reply to: Bruce Momjian (#1)
#177Tom Lane
tgl@sss.pgh.pa.us
In reply to: Jonathan S. Katz (#176)
#178Jonathan S. Katz
jkatz@postgresql.org
In reply to: Tom Lane (#177)
#179Tom Lane
tgl@sss.pgh.pa.us
In reply to: Jonathan S. Katz (#178)
#180Justin Pryzby
pryzby@telsasoft.com
In reply to: Justin Pryzby (#174)
#181Tom Lane
tgl@sss.pgh.pa.us
In reply to: Justin Pryzby (#180)
#182Peter Eisentraut
peter_e@gmx.net
In reply to: Jonathan S. Katz (#176)
#183Masahiko Sawada
sawada.mshk@gmail.com
In reply to: Peter Eisentraut (#182)
#184Jonathan S. Katz
jkatz@postgresql.org
In reply to: Masahiko Sawada (#183)
#185Tom Lane
tgl@sss.pgh.pa.us
In reply to: Jonathan S. Katz (#184)
#186Jonathan S. Katz
jkatz@postgresql.org
In reply to: Jonathan S. Katz (#184)
#187Tom Lane
tgl@sss.pgh.pa.us
In reply to: Jonathan S. Katz (#186)
#188Jonathan S. Katz
jkatz@postgresql.org
In reply to: Tom Lane (#187)
#189Tom Lane
tgl@sss.pgh.pa.us
In reply to: Jonathan S. Katz (#188)
#190Jonathan S. Katz
jkatz@postgresql.org
In reply to: Tom Lane (#189)
#191Tom Lane
tgl@sss.pgh.pa.us
In reply to: Jonathan S. Katz (#190)
#192Jonathan S. Katz
jkatz@postgresql.org
In reply to: Tom Lane (#191)
#193Tom Lane
tgl@sss.pgh.pa.us
In reply to: Jonathan S. Katz (#192)
#194Jonathan S. Katz
jkatz@postgresql.org
In reply to: Tom Lane (#193)
#195Tom Lane
tgl@sss.pgh.pa.us
In reply to: Jonathan S. Katz (#194)
#196Jonathan S. Katz
jkatz@postgresql.org
In reply to: Tom Lane (#195)
In reply to: Tom Lane (#195)