First draft of PG 17 release notes

Started by Bruce Momjianalmost 2 years ago211 messages
Jump to latest
#1Bruce Momjian
bruce@momjian.us

I have committed the first draft of the PG 17 release notes; you can
see the results here:

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

It will be improved until the final release. The item count is 188,
which is similar to recent releases:

release-10: 189
release-11: 170
release-12: 180
release-13: 178
release-14: 220
release-15: 184
release-16: 206
release-17: 188

I welcome feedback. For some reason it was an easier job than usual.

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

Only you can decide what is important to you.

#2David Rowley
dgrowleyml@gmail.com
In reply to: Bruce Momjian (#1)
Re: First draft of PG 17 release notes

On Thu, 9 May 2024 at 16:04, Bruce Momjian <bruce@momjian.us> wrote:

I welcome feedback. For some reason it was an easier job than usual.

Thanks for working on that.

+2023-11-02 [cac169d68] Increase DEFAULT_FDW_TUPLE_COST from 0.01 to 0.2

+Double the default foreign data wrapper tuple cost (David Rowley, Umair Shahid)

That's 20x rather than 2x.

David

#3Muhammad Ikram
mmikram@gmail.com
In reply to: David Rowley (#2)
Re: First draft of PG 17 release notes

Hi Bruce,

A minor formatting issue in the start below. Bullet is not required here.

E.1.1. Overview
<https://momjian.us/pgsql_docs/release-17.html#RELEASE-17-HIGHLIGHTS&gt;

PostgreSQL 17 contains many new features and enhancements, including:

-

The above items and other new features of PostgreSQL 17 are explained in
more detail in the sections below.
Regards,
Ikram

On Thu, May 9, 2024 at 9:45 AM David Rowley <dgrowleyml@gmail.com> wrote:

On Thu, 9 May 2024 at 16:04, Bruce Momjian <bruce@momjian.us> wrote:

I welcome feedback. For some reason it was an easier job than usual.

Thanks for working on that.

+2023-11-02 [cac169d68] Increase DEFAULT_FDW_TUPLE_COST from 0.01 to 0.2

+Double the default foreign data wrapper tuple cost (David Rowley, Umair

Shahid)

That's 20x rather than 2x.

David

--
Muhammad Ikram

#4David Rowley
dgrowleyml@gmail.com
In reply to: Muhammad Ikram (#3)
Re: First draft of PG 17 release notes

On Thu, 9 May 2024 at 16:47, Muhammad Ikram <mmikram@gmail.com> wrote:

A minor formatting issue in the start below. Bullet is not required here.

This is a placeholder for the highlight features of v17 will go.
Bruce tends not to decide what those are all by himself.

David

#5Bertrand Drouvot
bertranddrouvot.pg@gmail.com
In reply to: Bruce Momjian (#1)
Re: First draft of PG 17 release notes

Hi,

On Thu, May 09, 2024 at 12:03:50AM -0400, Bruce Momjian wrote:

I have committed the first draft of the PG 17 release notes; you can
see the results here:

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

Thanks for working on that!

I welcome feedback.

Add system view pg_wait_events that reports wait event types (Michael Paquier)

Michael is the committer for 1e68e43d3f, the author is me.

Regards,

--
Bertrand Drouvot
PostgreSQL Contributors Team
RDS Open Source Databases
Amazon Web Services: https://aws.amazon.com

#6Masahiko Sawada
sawada.mshk@gmail.com
In reply to: Bruce Momjian (#1)
Re: First draft of PG 17 release notes

Hi,

On Thu, May 9, 2024 at 1:03 PM Bruce Momjian <bruce@momjian.us> wrote:

I have committed the first draft of the PG 17 release notes; you can
see the results here:

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

Thank you for working on that!

I'd like to mention some of my works. I think we can add the vacuum
performance improvements by the following commits:

- Add template for adaptive radix tree (ee1b30f1)
- Add TIDStore, to store sets of TIDs (ItemPointerData) efficiently (30e144287)
- Use TidStore for dead tuple TIDs storage during lazy vacuum (667e65aac)

Also, please consider the following item:

- Improve eviction algorithm in ReorderBuffer using max-heap for many
subtransactions (5bec1d6bc)

Finally, should we mention the following commit in the release note?
It's not a user-visible change but added a new regression test module.

- Add tests for XID wraparound (e255b646a)

Regards,

--
Masahiko Sawada
Amazon Web Services: https://aws.amazon.com

#7Richard Guo
guofenglinux@gmail.com
In reply to: Bruce Momjian (#1)
Re: First draft of PG 17 release notes

On Thu, May 9, 2024 at 12:04 PM Bruce Momjian <bruce@momjian.us> wrote:

I have committed the first draft of the PG 17 release notes; you can
see the results here:

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

Thanks for working on that.

For this item:

Allow the optimizer to improve CTE plans by using the sort order of
columns referenced in earlier CTE clauses (Jian Guo)

I think you mean a65724dfa. The author should be 'Richard Guo'.

And I'm wondering if it is more accurate to state it as "Allow the
optimizer to improve plans for the outer query by leveraging the sort
order of a CTE's output."

I think maybe a similar revision can be applied to the item just above
this one.

Thanks
Richard

#8Aleksander Alekseev
aleksander@timescale.com
In reply to: Bruce Momjian (#1)
Re: First draft of PG 17 release notes

Hi,

I have committed the first draft of the PG 17 release notes; you can
see the results here:

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

It will be improved until the final release. The item count is 188,
which is similar to recent releases:

Thanks for working on this.

I believe the part of the 64-bit XIDs patchset that was delivered in
PG17 is worth highlighting in "E.1.3.10. Source Code" section:

4ed8f0913bfd
2cdf131c46e6
5a1dfde8334b
a60b8a58f435

All this can probably be summarized as one bullet "Index SLRUs by
64-bit integers rather than by 32-bit ones" where the authors are:
Maxim Orlov, Aleksander Alekseev, Alexander Korotkov, Teodor Sigaev,
Nikita Glukhov, Pavel Borisov, Yura Sokolov.

--
Best regards,
Aleksander Alekseev

#9jian he
jian.universality@gmail.com
In reply to: Bruce Momjian (#1)
Re: First draft of PG 17 release notes

On Thu, May 9, 2024 at 12:04 PM Bruce Momjian <bruce@momjian.us> wrote:

I have committed the first draft of the PG 17 release notes; you can
see the results here:

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

another potential incompatibilities issue:
ALTER TABLE DROP PRIMARY KEY

see:
/messages/by-id/202404181849.6frtmajobe27@alvherre.pgsql

In reply to: Bruce Momjian (#1)
Re: First draft of PG 17 release notes

Bruce Momjian <bruce@momjian.us> writes:

I have committed the first draft of the PG 17 release notes; you can
see the results here:

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

My name is listed twice in the "Improve psql tab completion" item.

- ilmari

In reply to: Dagfinn Ilmari Mannsåker (#10)
Re: First draft of PG 17 release notes

Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> writes:

Bruce Momjian <bruce@momjian.us> writes:

I have committed the first draft of the PG 17 release notes; you can
see the results here:

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

My name is listed twice in the "Improve psql tab completion" item.

You can move one of them to "Track DEALLOCATE in pg_stat_statements",
which Michael and I co-authored.

- ilmari

#12jian he
jian.universality@gmail.com
In reply to: Bruce Momjian (#1)
Re: First draft of PG 17 release notes

On Thu, May 9, 2024 at 12:04 PM Bruce Momjian <bruce@momjian.us> wrote:

I have committed the first draft of the PG 17 release notes; you can
see the results here:

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

* Add function pg_buffercache_evict() to allow shared buffer eviction
(Palak Chaturvedi, Thomas Munro)
* This is useful for testing.

this should put it on the section
< E.1.3.11. Additional Modules
?

Then I found out official release notes don't have <section> attributes,
so it doesn't matter?

<<
Allow ALTER OPERATOR to set more optimization attributes (Tommy Pavlicek)
This is useful for extensions.
<<
I think this commit title "Add hash support functions and hash opclass
for contrib/ltree."
from [1]https://git.postgresql.org/cgit/postgresql.git/commit/?id=485f0aa85995340fb62113448c992ee48dc6fff1 is more descriptive.
i am not 100% sure of the meaning of "This is useful for extensions."

[1]: https://git.postgresql.org/cgit/postgresql.git/commit/?id=485f0aa85995340fb62113448c992ee48dc6fff1

#13jian he
jian.universality@gmail.com
In reply to: jian he (#12)
Re: First draft of PG 17 release notes

<<
Allow ALTER OPERATOR to set more optimization attributes (Tommy Pavlicek)
This is useful for extensions.
<<

sorry, I mean
<<
Allow the creation of hash indexes on ltree columns (Tommy Pavlicek)
This also enables hash join and hash aggregation on ltree columns.
<<

better description would be:
<<
Add hash support functions and hash opclass for contrib/ltree (Tommy Pavlicek)
This also enables hash join and hash aggregation on ltree columns.
<<

#14Hans Buschmann
buschmann@nidsa.net
In reply to: jian he (#13)
Re: First draft of PG 17 release notes

Some findings

1.

Remove adminpack contrib extension (Daniel Gustafsson)

This was used by non-end-of-life pgAdmin III.

Perhaps you mean now-end-of-life (s/non/now/)

2.

All specification of partitioned table access methods (Justin Pryzby, >>Soumyadeep Chakraborty, Michael Paquier)

perhaps you mean Allow, otherwise meaning not clear.

3.

Add some long options to pg_archivecleanup (Atsushi Torikoshi)
The long options are --debug, --dry-run, and /--strip-extension.

The slash should be omitted.

Hans Buschmann

#15jian he
jian.universality@gmail.com
In reply to: jian he (#12)
Re: First draft of PG 17 release notes

On Thu, May 9, 2024 at 6:53 PM jian he <jian.universality@gmail.com> wrote:

On Thu, May 9, 2024 at 12:04 PM Bruce Momjian <bruce@momjian.us> wrote:

I have committed the first draft of the PG 17 release notes; you can
see the results here:

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

< Add columns to pg_stats to report range histogram information (Egor
Rogov, Soumyadeep Chakraborty)
I think this applies to range type and multi range type, "range
histogram information" seems not very clear to me.
So maybe:
< Add columns to pg_stats to report range-type histogram information
(Egor Rogov, Soumyadeep Chakraborty)

Display length and bounds histograms in pg_stats
< Add new COPY option "ON_ERROR ignore" to discard error rows (Damir
Belyalov, Atsushi Torikoshi, Alex Shulgin, Jian He, Jian He, Yugo
Nagata)
duplicate name.

#16Bruce Momjian
bruce@momjian.us
In reply to: David Rowley (#2)
Re: First draft of PG 17 release notes

On Thu, May 9, 2024 at 04:44:47PM +1200, David Rowley wrote:

On Thu, 9 May 2024 at 16:04, Bruce Momjian <bruce@momjian.us> wrote:

I welcome feedback. For some reason it was an easier job than usual.

Thanks for working on that.

+2023-11-02 [cac169d68] Increase DEFAULT_FDW_TUPLE_COST from 0.01 to 0.2

+Double the default foreign data wrapper tuple cost (David Rowley, Umair Shahid)

That's 20x rather than 2x.

Oops, changed to:

Increase the default foreign data wrapper tuple cost (David
Rowley, Umair Shahid)

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

Only you can decide what is important to you.

#17Bruce Momjian
bruce@momjian.us
In reply to: Muhammad Ikram (#3)
Re: First draft of PG 17 release notes

On Thu, May 9, 2024 at 09:47:34AM +0500, Muhammad Ikram wrote:

Hi Bruce,

A minor formatting issue in the start below. Bullet is not required here.

E.1.1. Overview 

PostgreSQL 17 contains many new features and enhancements, including:

The above items and other new features of PostgreSQL 17 are explained in more
detail in the sections below.

That is just a place-holder. I changed the bullet text to be:

TO BE COMPLETED LATER

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

Only you can decide what is important to you.

#18Bruce Momjian
bruce@momjian.us
In reply to: David Rowley (#4)
Re: First draft of PG 17 release notes

On Thu, May 9, 2024 at 04:52:14PM +1200, David Rowley wrote:

On Thu, 9 May 2024 at 16:47, Muhammad Ikram <mmikram@gmail.com> wrote:

A minor formatting issue in the start below. Bullet is not required here.

This is a placeholder for the highlight features of v17 will go.
Bruce tends not to decide what those are all by himself.

Yes, I already have so much of my opinion in the release notes that I
prefer others to make that list, and to make the Acknowledgments list
at the bottom.

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

Only you can decide what is important to you.

#19Bruce Momjian
bruce@momjian.us
In reply to: Bertrand Drouvot (#5)
Re: First draft of PG 17 release notes

On Thu, May 9, 2024 at 04:53:38AM +0000, Bertrand Drouvot wrote:

Hi,

On Thu, May 09, 2024 at 12:03:50AM -0400, Bruce Momjian wrote:

I have committed the first draft of the PG 17 release notes; you can
see the results here:

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

Thanks for working on that!

I welcome feedback.

Add system view pg_wait_events that reports wait event types (Michael Paquier)

Michael is the committer for 1e68e43d3f, the author is me.

Wow, thank you for finding that. The commit message is very clear so I
don't know how I made that mistake. Fixed.

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

Only you can decide what is important to you.

#20Bruce Momjian
bruce@momjian.us
In reply to: Masahiko Sawada (#6)
Re: First draft of PG 17 release notes

On Thu, May 9, 2024 at 02:17:12PM +0900, Masahiko Sawada wrote:

Hi,

On Thu, May 9, 2024 at 1:03 PM Bruce Momjian <bruce@momjian.us> wrote:

I have committed the first draft of the PG 17 release notes; you can
see the results here:

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

Thank you for working on that!

I'd like to mention some of my works. I think we can add the vacuum
performance improvements by the following commits:

- Add template for adaptive radix tree (ee1b30f1)
- Add TIDStore, to store sets of TIDs (ItemPointerData) efficiently (30e144287)
- Use TidStore for dead tuple TIDs storage during lazy vacuum (667e65aac)

Okay, I reworded the item, added authors, and added the commits:

<!--
Author: John Naylor <john.naylor@postgresql.org>
2024-03-07 [ee1b30f12] Add template for adaptive radix tree
Author: Masahiko Sawada <msawada@postgresql.org>
2024-03-21 [30e144287] Add TIDStore, to store sets of TIDs (ItemPointerData) ef
Author: Masahiko Sawada <msawada@postgresql.org>
2024-04-02 [667e65aac] Use TidStore for dead tuple TIDs storage during lazy vac
Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
2024-04-03 [6dbb49026] Combine freezing and pruning steps in VACUUM
-->

<listitem>
<para>
Allow vacuum to more efficiently remove and freeze tuples (John Naylor, Masahiko Sawada, Melanie Plageman)
</para>
</listitem>

Also, please consider the following item:

- Improve eviction algorithm in ReorderBuffer using max-heap for many
subtransactions (5bec1d6bc)

I looked at that item and I don't have a generic "make logical
replication apply faster" item to merge it into, and many
subtransactions seemed like enough of an edge-case that I didn't think
mentioning it make sense. Can you see a good place to add it?

Finally, should we mention the following commit in the release note?
It's not a user-visible change but added a new regression test module.

- Add tests for XID wraparound (e255b646a)

I don't normally add testing infrastructure changes unless they are
major.

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

Only you can decide what is important to you.

#21Bruce Momjian
bruce@momjian.us
In reply to: Richard Guo (#7)
#22Bruce Momjian
bruce@momjian.us
In reply to: Aleksander Alekseev (#8)
#23Bruce Momjian
bruce@momjian.us
In reply to: jian he (#9)
#24Bruce Momjian
bruce@momjian.us
In reply to: Dagfinn Ilmari Mannsåker (#10)
#25Bruce Momjian
bruce@momjian.us
In reply to: Dagfinn Ilmari Mannsåker (#11)
#26Bruce Momjian
bruce@momjian.us
In reply to: jian he (#12)
#27Bruce Momjian
bruce@momjian.us
In reply to: jian he (#13)
#28Bruce Momjian
bruce@momjian.us
In reply to: jian he (#15)
#29jian he
jian.universality@gmail.com
In reply to: Bruce Momjian (#28)
#30Bruce Momjian
bruce@momjian.us
In reply to: Hans Buschmann (#14)
#31Bruce Momjian
bruce@momjian.us
In reply to: jian he (#29)
#32Andrew Dunstan
andrew@dunslane.net
In reply to: Bruce Momjian (#1)
#33Bruce Momjian
bruce@momjian.us
In reply to: Andrew Dunstan (#32)
#34Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#23)
#35Thomas Munro
thomas.munro@gmail.com
In reply to: Bruce Momjian (#1)
#36Bruce Momjian
bruce@momjian.us
In reply to: Thomas Munro (#35)
#37Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#34)
#38Bharath Rupireddy
bharath.rupireddyforpostgres@gmail.com
In reply to: Bruce Momjian (#1)
#39Bruce Momjian
bruce@momjian.us
In reply to: Bharath Rupireddy (#38)
#40Daniel Verite
daniel@manitou-mail.org
In reply to: Bruce Momjian (#1)
#41Jelte Fennema-Nio
postgres@jeltef.nl
In reply to: Bruce Momjian (#1)
#42Bruce Momjian
bruce@momjian.us
In reply to: Daniel Verite (#40)
#43Maiquel Grassi
grassi@hotmail.com.br
In reply to: Bruce Momjian (#42)
#44Bruce Momjian
bruce@momjian.us
In reply to: Jelte Fennema-Nio (#41)
#45Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#44)
#46Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#45)
#47Andy Fan
zhihui.fan1213@gmail.com
In reply to: Bruce Momjian (#1)
#48David Rowley
dgrowleyml@gmail.com
In reply to: Andy Fan (#47)
#49Jelte Fennema-Nio
postgres@jeltef.nl
In reply to: Tom Lane (#45)
#50Joe Conway
mail@joeconway.com
In reply to: Jelte Fennema-Nio (#49)
#51Andrew Dunstan
andrew@dunslane.net
In reply to: Bruce Momjian (#1)
#52Bharath Rupireddy
bharath.rupireddyforpostgres@gmail.com
In reply to: Bruce Momjian (#39)
#53Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#45)
#54Bruce Momjian
bruce@momjian.us
In reply to: Joe Conway (#50)
#55Bruce Momjian
bruce@momjian.us
In reply to: Andy Fan (#47)
#56Tender Wang
tndrwang@gmail.com
In reply to: jian he (#9)
#57Andy Fan
zhihui.fan1213@gmail.com
In reply to: Bruce Momjian (#55)
#58Elena Indrupskaya
e.indrupskaya@postgrespro.ru
In reply to: Bruce Momjian (#1)
#59Jelte Fennema-Nio
postgres@jeltef.nl
In reply to: Bruce Momjian (#54)
#60Pantelis Theodosiou
ypercube@gmail.com
In reply to: Bruce Momjian (#1)
#61Melanie Plageman
melanieplageman@gmail.com
In reply to: Bruce Momjian (#1)
#62Bruce Momjian
bruce@momjian.us
In reply to: Andy Fan (#57)
#63Bruce Momjian
bruce@momjian.us
In reply to: Andrew Dunstan (#51)
#64Bruce Momjian
bruce@momjian.us
In reply to: Elena Indrupskaya (#58)
#65Bruce Momjian
bruce@momjian.us
In reply to: Jelte Fennema-Nio (#59)
#66Bruce Momjian
bruce@momjian.us
In reply to: Pantelis Theodosiou (#60)
#67Bruce Momjian
bruce@momjian.us
In reply to: Melanie Plageman (#61)
#68Masahiko Sawada
sawada.mshk@gmail.com
In reply to: Bruce Momjian (#20)
#69Bruce Momjian
bruce@momjian.us
In reply to: Tender Wang (#56)
#70David Rowley
dgrowleyml@gmail.com
In reply to: Bruce Momjian (#67)
#71Bruce Momjian
bruce@momjian.us
In reply to: David Rowley (#70)
#72Bruce Momjian
bruce@momjian.us
In reply to: Masahiko Sawada (#68)
#73David Rowley
dgrowleyml@gmail.com
In reply to: Bruce Momjian (#71)
#74Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#67)
#75David Rowley
dgrowleyml@gmail.com
In reply to: Alvaro Herrera (#74)
#76Melanie Plageman
melanieplageman@gmail.com
In reply to: Alvaro Herrera (#74)
#77Amit Kapila
amit.kapila16@gmail.com
In reply to: Bruce Momjian (#71)
#78jian he
jian.universality@gmail.com
In reply to: Bruce Momjian (#1)
#79Bruce Momjian
bruce@momjian.us
In reply to: Melanie Plageman (#76)
#80David G. Johnston
david.g.johnston@gmail.com
In reply to: jian he (#78)
#81Bruce Momjian
bruce@momjian.us
In reply to: jian he (#78)
#82David Rowley
dgrowleyml@gmail.com
In reply to: Bruce Momjian (#79)
#83Andres Freund
andres@anarazel.de
In reply to: Alvaro Herrera (#74)
#84jian he
jian.universality@gmail.com
In reply to: Bruce Momjian (#1)
#85Jelte Fennema-Nio
postgres@jeltef.nl
In reply to: Andres Freund (#83)
#86Joe Conway
mail@joeconway.com
In reply to: Andres Freund (#83)
#87Melanie Plageman
melanieplageman@gmail.com
In reply to: Andres Freund (#83)
In reply to: Andres Freund (#83)
#89Andrew Dunstan
andrew@dunslane.net
In reply to: Bruce Momjian (#63)
#90jian he
jian.universality@gmail.com
In reply to: Bruce Momjian (#1)
#91Daniel Verite
daniel@manitou-mail.org
In reply to: Bruce Momjian (#1)
#92Jeff Davis
pgsql@j-davis.com
In reply to: Bruce Momjian (#1)
#93Bruce Momjian
bruce@momjian.us
In reply to: David Rowley (#82)
#94Bruce Momjian
bruce@momjian.us
In reply to: Andres Freund (#83)
#95Bruce Momjian
bruce@momjian.us
In reply to: Melanie Plageman (#87)
#96Bruce Momjian
bruce@momjian.us
In reply to: jian he (#84)
#97Bruce Momjian
bruce@momjian.us
In reply to: Andrew Dunstan (#89)
#98Andrew Dunstan
andrew@dunslane.net
In reply to: Bruce Momjian (#97)
#99Bruce Momjian
bruce@momjian.us
In reply to: jian he (#90)
#100Bruce Momjian
bruce@momjian.us
In reply to: Jeff Davis (#92)
#101David Rowley
dgrowleyml@gmail.com
In reply to: Bruce Momjian (#93)
#102Bruce Momjian
bruce@momjian.us
In reply to: David Rowley (#101)
#103John Naylor
john.naylor@enterprisedb.com
In reply to: Bruce Momjian (#102)
#104Bruce Momjian
bruce@momjian.us
In reply to: John Naylor (#103)
#105Melanie Plageman
melanieplageman@gmail.com
In reply to: Bruce Momjian (#95)
#106Bruce Momjian
bruce@momjian.us
In reply to: Melanie Plageman (#105)
#107Melanie Plageman
melanieplageman@gmail.com
In reply to: Bruce Momjian (#104)
#108Jeff Davis
pgsql@j-davis.com
In reply to: Bruce Momjian (#100)
#109Amit Langote
Langote_Amit_f8@lab.ntt.co.jp
In reply to: Bruce Momjian (#1)
#110Andres Freund
andres@anarazel.de
In reply to: Bruce Momjian (#94)
#111Andres Freund
andres@anarazel.de
In reply to: Bruce Momjian (#95)
#112Andres Freund
andres@anarazel.de
In reply to: Andres Freund (#110)
#113Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Andres Freund (#112)
In reply to: Andres Freund (#110)
#115Robert Haas
robertmhaas@gmail.com
In reply to: Andres Freund (#110)
#116Melanie Plageman
melanieplageman@gmail.com
In reply to: Robert Haas (#115)
#117Robert Haas
robertmhaas@gmail.com
In reply to: Melanie Plageman (#116)
#118Masahiko Sawada
sawada.mshk@gmail.com
In reply to: Bruce Momjian (#1)
#119torikoshia
torikoshia@oss.nttdata.com
In reply to: Bruce Momjian (#1)
#120Bruce Momjian
bruce@momjian.us
In reply to: Melanie Plageman (#107)
#121Bruce Momjian
bruce@momjian.us
In reply to: Andres Freund (#110)
#122Bruce Momjian
bruce@momjian.us
In reply to: Andres Freund (#112)
#123Bruce Momjian
bruce@momjian.us
In reply to: Robert Haas (#115)
#124Bruce Momjian
bruce@momjian.us
In reply to: Melanie Plageman (#116)
#125Bruce Momjian
bruce@momjian.us
In reply to: Andres Freund (#111)
#126Bruce Momjian
bruce@momjian.us
In reply to: Jeff Davis (#108)
#127Bruce Momjian
bruce@momjian.us
In reply to: Amit Langote (#109)
#128Bruce Momjian
bruce@momjian.us
In reply to: Masahiko Sawada (#118)
#129Bruce Momjian
bruce@momjian.us
In reply to: torikoshia (#119)
#130David Rowley
dgrowleyml@gmail.com
In reply to: Bruce Momjian (#121)
#131Bruce Momjian
bruce@momjian.us
In reply to: David Rowley (#130)
#132David Rowley
dgrowleyml@gmail.com
In reply to: Bruce Momjian (#131)
#133Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#1)
#134Jeff Davis
pgsql@j-davis.com
In reply to: Bruce Momjian (#126)
#135Marcos Pegoraro
marcos@f10.com.br
In reply to: Jeff Davis (#134)
In reply to: Bruce Momjian (#129)
#137Bruce Momjian
bruce@momjian.us
In reply to: David Rowley (#132)
#138Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#137)
#139Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#138)
#140Robert Haas
robertmhaas@gmail.com
In reply to: Bruce Momjian (#137)
#141Andres Freund
andres@anarazel.de
In reply to: Bruce Momjian (#139)
#142Andres Freund
andres@anarazel.de
In reply to: Bruce Momjian (#125)
In reply to: Andres Freund (#141)
#144Bruce Momjian
bruce@momjian.us
In reply to: Andres Freund (#141)
#145Bruce Momjian
bruce@momjian.us
In reply to: Andres Freund (#142)
#146Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#133)
#147Bruce Momjian
bruce@momjian.us
In reply to: Marcos Pegoraro (#135)
#148Bruce Momjian
bruce@momjian.us
In reply to: Peter Geoghegan (#136)
#149Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#146)
#150Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#149)
#151David Rowley
dgrowleyml@gmail.com
In reply to: Bruce Momjian (#148)
#152Bruce Momjian
bruce@momjian.us
In reply to: David Rowley (#151)
#153Dean Rasheed
dean.a.rasheed@gmail.com
In reply to: Bruce Momjian (#1)
#154Bruce Momjian
bruce@momjian.us
In reply to: Dean Rasheed (#153)
#155Matthias van de Meent
boekewurm+postgres@gmail.com
In reply to: Bruce Momjian (#154)
#156Bruce Momjian
bruce@momjian.us
In reply to: Matthias van de Meent (#155)
#157Kisoon Kwon
moxie2ks@gmail.com
In reply to: Bruce Momjian (#156)
#158Yugo Nagata
nagata@sraoss.co.jp
In reply to: Bruce Momjian (#1)
#159Justin Pryzby
pryzby@telsasoft.com
In reply to: Bruce Momjian (#1)
#160Bruce Momjian
bruce@momjian.us
In reply to: Kisoon Kwon (#157)
#161Bruce Momjian
bruce@momjian.us
In reply to: Yugo Nagata (#158)
#162Bruce Momjian
bruce@momjian.us
In reply to: Justin Pryzby (#159)
#163Nathan Bossart
nathandbossart@gmail.com
In reply to: Bruce Momjian (#162)
#164jian he
jian.universality@gmail.com
In reply to: Nathan Bossart (#163)
#165Bruce Momjian
bruce@momjian.us
In reply to: jian he (#164)
#166Bruce Momjian
bruce@momjian.us
In reply to: Nathan Bossart (#163)
#167Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#166)
#168Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#167)
#169Jelte Fennema-Nio
postgres@jeltef.nl
In reply to: Bruce Momjian (#168)
#170Michael Banck
michael.banck@credativ.de
In reply to: Bruce Momjian (#166)
#171Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Jelte Fennema-Nio (#169)
#172Masahiko Sawada
sawada.mshk@gmail.com
In reply to: Jelte Fennema-Nio (#169)
#173Bruce Momjian
bruce@momjian.us
In reply to: Jelte Fennema-Nio (#169)
#174Bruce Momjian
bruce@momjian.us
In reply to: Masahiko Sawada (#172)
#175Nathan Bossart
nathandbossart@gmail.com
In reply to: Bruce Momjian (#174)
#176Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#1)
#177Bruce Momjian
bruce@momjian.us
In reply to: Nathan Bossart (#175)
#178Nathan Bossart
nathandbossart@gmail.com
In reply to: Bruce Momjian (#177)
#179Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#176)
#180Bruce Momjian
bruce@momjian.us
In reply to: Alvaro Herrera (#176)
#181Jelte Fennema-Nio
postgres@jeltef.nl
In reply to: Bruce Momjian (#173)
#182Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Bruce Momjian (#173)
#183Bruce Momjian
bruce@momjian.us
In reply to: Jelte Fennema-Nio (#181)
#184Nathan Bossart
nathandbossart@gmail.com
In reply to: Bruce Momjian (#183)
#185Robert Haas
robertmhaas@gmail.com
In reply to: Nathan Bossart (#184)
#186Bruce Momjian
bruce@momjian.us
In reply to: Robert Haas (#185)
#187Robert Haas
robertmhaas@gmail.com
In reply to: Bruce Momjian (#186)
#188Jonathan S. Katz
jkatz@postgresql.org
In reply to: Bruce Momjian (#1)
#189Laurenz Albe
laurenz.albe@cybertec.at
In reply to: Jonathan S. Katz (#188)
#190Jonathan S. Katz
jkatz@postgresql.org
In reply to: Laurenz Albe (#189)
#191Bruce Momjian
bruce@momjian.us
In reply to: Jonathan S. Katz (#190)
#192Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#191)
#193Laurenz Albe
laurenz.albe@cybertec.at
In reply to: Jonathan S. Katz (#190)
#194Bruce Momjian
bruce@momjian.us
In reply to: Tom Lane (#192)
#195Tom Lane
tgl@sss.pgh.pa.us
In reply to: Laurenz Albe (#193)
#196Yugo Nagata
nagata@sraoss.co.jp
In reply to: Bruce Momjian (#1)
#197Amit Kapila
amit.kapila16@gmail.com
In reply to: Bruce Momjian (#194)
#198Bruce Momjian
bruce@momjian.us
In reply to: Yugo Nagata (#196)
#199Bruce Momjian
bruce@momjian.us
In reply to: Amit Kapila (#197)
#200Amit Kapila
amit.kapila16@gmail.com
In reply to: Bruce Momjian (#199)
#201Yugo Nagata
nagata@sraoss.co.jp
In reply to: Bruce Momjian (#198)
#202Laurenz Albe
laurenz.albe@cybertec.at
In reply to: Bruce Momjian (#1)
#203Bruce Momjian
bruce@momjian.us
In reply to: Yugo Nagata (#201)
#204Bruce Momjian
bruce@momjian.us
In reply to: Bruce Momjian (#203)
#205Bruce Momjian
bruce@momjian.us
In reply to: Laurenz Albe (#202)
#206Bruce Momjian
bruce@momjian.us
In reply to: Amit Kapila (#200)
#207Amit Kapila
amit.kapila16@gmail.com
In reply to: Bruce Momjian (#206)
#208Laurenz Albe
laurenz.albe@cybertec.at
In reply to: Bruce Momjian (#205)
#209Yugo Nagata
nagata@sraoss.co.jp
In reply to: Bruce Momjian (#204)
#210Bruce Momjian
bruce@momjian.us
In reply to: Yugo Nagata (#209)
#211Bruce Momjian
bruce@momjian.us
In reply to: Amit Kapila (#207)