C++ port of Postgres

Started by Joy Arulrajover 9 years ago76 messageshackersgeneral
Jump to latest
#1Joy Arulraj
jarulraj@cs.cmu.edu
hackersgeneral

Hi folks --

We have ported Postgres over to the C++ language (C++11 standard).

https://github.com/jarulraj/postgresql-cpp

Our goal is to use certain features of the C++ language and its standard
library to simplify coding, improve code reuse, and avoid bugs. Peter's
article titled `Moving to C++
<https://petereisentraut.blogspot.com/2013/05/moving-to-c.html&gt;` was a
source of inspiration for us.

Regards.

#2John R Pierce
pierce@hogranch.com
In reply to: Joy Arulraj (#1)
hackersgeneral
Re: C++ port of Postgres

On 8/14/2016 2:05 PM, Joy Arulraj wrote:

We have ported Postgres over to the C++ language (C++11 standard).

https://github.com/jarulraj/postgresql-cpp

Our goal is to use certain features of the C++ language and its
standard library to simplify coding, improve code reuse, and avoid
bugs. Peter's article titled `Moving to C++
<https://petereisentraut.blogspot.com/2013/05/moving-to-c.html&gt;` was a
source of inspiration for us.

does this compile with the non-GCC compilers that postgres gets built
with, for instance, IBM XLC++ on AIX, Oracle Studio C++ on Solaris,
Microsoft Visual C++ on MS Windows, CLang on BSD ? what about popular
platforms like RHEL 6, where gcc is 4.4.7 ?

--
john r pierce, recycling bits in santa cruz

#3Dmitriy Igrishin
dmitigr@gmail.com
In reply to: Joy Arulraj (#1)
hackersgeneral
Re: C++ port of Postgres

Hi Joy,

2016-08-15 0:05 GMT+03:00 Joy Arulraj <jarulraj@cs.cmu.edu>:

Hi folks --

We have ported Postgres over to the C++ language (C++11 standard).

https://github.com/jarulraj/postgresql-cpp

Our goal is to use certain features of the C++ language and its standard
library to simplify coding, improve code reuse, and avoid bugs. Peter's
article titled `Moving to C++` was a source of inspiration for us.

What about the exceptions? Are you using them?

--
// Dmitry.

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

#4Joy Arulraj
jarulraj@cs.cmu.edu
In reply to: Joy Arulraj (#1)
hackersgeneral
Re: C++ port of Postgres

Hi Dmitry -- We currently don't use exceptions, but we can certainly use
them in the port. We can also use STL and smart pointers to simplify
development and minimize memory bugs.

On Aug 14, 2016 5:41 PM, "Dmitry Igrishin" <dmitigr@gmail.com> wrote:

Show quoted text

Hi Joy,

2016-08-15 0:05 GMT+03:00 Joy Arulraj <jarulraj@cs.cmu.edu>:

Hi folks --

We have ported Postgres over to the C++ language (C++11 standard).

https://github.com/jarulraj/postgresql-cpp

Our goal is to use certain features of the C++ language and its standard
library to simplify coding, improve code reuse, and avoid bugs. Peter's
article titled `Moving to C++` was a source of inspiration for us.

What about the exceptions? Are you using them?

--
// Dmitry.

#5kang joni
kangjoni76@gmail.com
In reply to: Joy Arulraj (#4)
hackersgeneral
Re: C++ port of Postgres

I agree with this project, I dont like any setjmp/longjmp and the
like. It just fighting against the nature of c++ language. Building
either from scratch gcc48 or clang381 were easy nowdays on either old
linux debian squeeze or centos 5. PS: I had this requirement
circumtances.

On 8/15/16, Joy Arulraj <jarulraj@cs.cmu.edu> wrote:

Hi Dmitry -- We currently don't use exceptions, but we can certainly use
them in the port. We can also use STL and smart pointers to simplify
development and minimize memory bugs.

On Aug 14, 2016 5:41 PM, "Dmitry Igrishin" <dmitigr@gmail.com> wrote:

Hi Joy,

2016-08-15 0:05 GMT+03:00 Joy Arulraj <jarulraj@cs.cmu.edu>:

Hi folks --

We have ported Postgres over to the C++ language (C++11 standard).

https://github.com/jarulraj/postgresql-cpp

Our goal is to use certain features of the C++ language and its
standard
library to simplify coding, improve code reuse, and avoid bugs. Peter's
article titled `Moving to C++` was a source of inspiration for us.

What about the exceptions? Are you using them?

--
// Dmitry.

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

#6Joy Arulraj
jarulraj@cs.cmu.edu
In reply to: kang joni (#5)
hackersgeneral
Re: C++ port of Postgres

Kang -- Yes, this is one of the reasons why we chose to do this.

John -- We have not compiled it with non-GCC compilers. But, I presume that
the changes required to support compilation with other compilers should be
minimal as we don't rely on any compiler-specific features.

On Sun, Aug 14, 2016 at 6:30 PM, kang joni <kangjoni76@gmail.com> wrote:

Show quoted text

I agree with this project, I dont like any setjmp/longjmp and the
like. It just fighting against the nature of c++ language. Building
either from scratch gcc48 or clang381 were easy nowdays on either old
linux debian squeeze or centos 5. PS: I had this requirement
circumtances.

On 8/15/16, Joy Arulraj <jarulraj@cs.cmu.edu> wrote:

Hi Dmitry -- We currently don't use exceptions, but we can certainly use
them in the port. We can also use STL and smart pointers to simplify
development and minimize memory bugs.

On Aug 14, 2016 5:41 PM, "Dmitry Igrishin" <dmitigr@gmail.com> wrote:

Hi Joy,

2016-08-15 0:05 GMT+03:00 Joy Arulraj <jarulraj@cs.cmu.edu>:

Hi folks --

We have ported Postgres over to the C++ language (C++11 standard).

https://github.com/jarulraj/postgresql-cpp

Our goal is to use certain features of the C++ language and its
standard
library to simplify coding, improve code reuse, and avoid bugs.

Peter's

article titled `Moving to C++` was a source of inspiration for us.

What about the exceptions? Are you using them?

--
// Dmitry.

#7Adam Brusselback
adambrusselback@gmail.com
In reply to: Joy Arulraj (#6)
hackersgeneral
Re: C++ port of Postgres

Just wondering what the end goal is for this project... Is it to just
maintain an up to date Postgres fork that will compile with a C++ compiler?
Is it to get a conversation going for a direction for Postgres itself to
move? The former I don't see gaining much traction or doing all that much
for the state of the project. The latter possibly could if the community
gets on board.

Thanks,
-Adam

#8dandl
david@andl.org
In reply to: Adam Brusselback (#7)
hackersgeneral
Re: C++ port of Postgres

Just wondering what the end goal is for this project... Is it to just maintain an up to date Postgres fork that will compile with a C++ compiler? Is it to get a conversation going for a direction for Postgres itself to move? The former I don't see gaining much traction or doing all that much for the state of the project. The latter possibly could if the community gets on board.

I would certainly hope the latter. Having done some work on extension functions and an extension language for Postgres, the current situation can be quite limiting.

* Parts of my code could only be written in C++, so I finished up with a mixed build, which is not ideal.

* My other issue was dealing with the Datum macros. Type-safe inline C++ functions would help reduce dumb errors.

Not compelling reasons perhaps, but just a vote for a move in that direction, some time.

Regards

David M Bennett FACS

_____

Andl - A New Database Language - andl.org

#9Gavin Flower
GavinFlower@archidevsys.co.nz
In reply to: dandl (#8)
hackersgeneral
Re: C++ port of Postgres

On 16/08/16 18:24, dandl wrote:

Just wondering what the end goal is for this project... Is it to just
maintain an up to date Postgres fork that will compile with a C++
compiler? Is it to get a conversation going for a direction for
Postgres itself to move? The former I don't see gaining much traction
or doing all that much for the state of the project. The latter
possibly could if the community gets on board.

I would certainly hope the latter. Having done some work on extension
functions and an extension language for Postgres, the current
situation can be quite limiting.

·Parts of my code could only be written in C++, so I finished up with
a mixed build, which is not ideal.

·My other issue was dealing with the Datum macros. Type-safe inline
C++ functions would help reduce dumb errors.

Not compelling reasons perhaps, but just a vote for a move in that
direction, some time.

Regards

David M Bennett FACS

/
------------------------------------------------------------------------
/

/Andl - A New Database Language - andl.org/

I note that gcc itself is now written in C++, and so is squid (web
proxy)...

In both cases, part of the motivation to change from C was to appeal to
new developers - from what I remember of the discussions.

Cheers,
Gavin

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

#10FarjadFarid(ChkNet)
farjad.farid@checknetworks.com
In reply to: Joy Arulraj (#1)
hackersgeneral
Re: C++ port of Postgres

Well done. This is a much needed conversion. As Peter’s article says, it does open up more opportunities.

From: pgsql-general-owner@postgresql.org [mailto:pgsql-general-owner@postgresql.org] On Behalf Of Joy Arulraj
Sent: 14 August 2016 22:06
To: pgsql-general@postgresql.org
Subject: [GENERAL] C++ port of Postgres

Hi folks --

We have ported Postgres over to the C++ language (C++11 standard).

https://github.com/jarulraj/postgresql-cpp

Our goal is to use certain features of the C++ language and its standard library to simplify coding, improve code reuse, and avoid bugs. Peter's article titled `Moving to C++ <https://petereisentraut.blogspot.com/2013/05/moving-to-c.html&gt; ` was a source of inspiration for us.

Regards.

#11Jim Nasby
Jim.Nasby@BlueTreble.com
In reply to: Gavin Flower (#9)
hackersgeneral
Re: [GENERAL] C++ port of Postgres

On 8/16/16 2:52 AM, Gavin Flower wrote:

In both cases, part of the motivation to change from C was to appeal to
new developers - from what I remember of the discussions.

Moving this to -hackers. Original thread at [1].

tl;dr: A C++ port of Postgres has been created, and several folks on
general have commented that this makes it easier to work with the
Postgres codebase. This potentially attracts more developers to the
project. I hope we can find a way to pull these folks into the fold.

People in core have complained that we don't have enough hackers coming
in (which I agree with). Part of that is lack of familiarity with C.

I think we can all agree that a C++ fork of Postgres would be a huge
waste of time, so the question becomes should core postgres start
supporting C++.

Peter wrote a blog about this in 2013 that makes some good arguments
[2]: ; in particular "easing into" this by first officially supporting C++ compilation. I also like the idea of investigating Rust.
compilation. I also like the idea of investigating Rust.

I realize there's little technical reason why we *need* C++ support. The
level if discipline applied to our codebase negates some of the benefits
of C++. But maintaining the discipline takes a lot of time and effort,
and makes it more difficult to attract new contributors. My hope is that
existing hackers can agree on a reasonable way forward and guide/assist
new folks that are interested in walking that path.

1:
/messages/by-id/CABgyVxDBd3EvRdo-Rd6eo8QPEqV8=ShaU2SJfo16wfE0R-hXTA@mail.gmail.com
2: https://petereisentraut.blogspot.com/2013/05/moving-to-c.html
--
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

#12Yury Zhuravlev
u.zhuravlev@postgrespro.ru
In reply to: Jim Nasby (#11)
hackersgeneral
Re: [GENERAL] C++ port of Postgres

Jim Nasby wrote:

My hope is that existing hackers can agree on a reasonable way
forward and guide/assist new folks that are interested in
walking that path.

I tried this path. https://github.com/stalkerg/postgres_cpp
And I fully support this desire. But I'm in the minority.

I also like the idea of investigating Rust.

I am working on it last few weeks. But it's like seek blocks for new DB. I
don't know how we can insert Rust code into Postgres spaghetti.

--
Yury Zhuravlev
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

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

#13Aleksander Alekseev
aleksander@timescale.com
In reply to: Jim Nasby (#11)
hackersgeneral
Re: [GENERAL] C++ port of Postgres

Well, well, well. Another C vs C++ holly war, really?

In both cases, part of the motivation to change from C was to
appeal to new developers - from what I remember of the
discussions.

Moving this to -hackers. Original thread at [1].

tl;dr: A C++ port of Postgres has been created, and several folks on
general have commented that this makes it easier to work with the
Postgres codebase. This potentially attracts more developers to the
project. I hope we can find a way to pull these folks into the fold.

Who are these "folks"? How many more developers it would attract
_exactly_, not potentially?

People in core have complained that we don't have enough hackers
coming in (which I agree with). Part of that is lack of familiarity
with C.

One again, which "people"? I've seen people complained that there is
not enough code reviewers and testers. I doubt very much its something
C++ will help with.

I think we can all agree that a C++ fork of Postgres would be a huge
waste of time, so the question becomes should core postgres start
supporting C++.

Peter wrote a blog about this in 2013 that makes some good arguments
[2]; in particular "easing into" this by first officially supporting
C++ compilation. I also like the idea of investigating Rust.

And I wrote a blog post (in Russian) [1]http://eax.me/c-vs-cpp/ in 2016 why nobody should (if
they can) write a new code in C++. In my opinion Rust looks way more
promising. However I personally prefer to wait like 5 years before
using a new and shiny technology. This is also something I blogged
about (in Russian [2]http://eax.me/cpp-will-never-die/, translation [3]http://www.viva64.com/en/b/0324/).

I realize there's little technical reason why we *need* C++ support.

You are right, there is none.

The level if discipline applied to our codebase negates some of the
benefits of C++. But maintaining the discipline takes a lot of time
and effort, and makes it more difficult to attract new contributors.

There are companies. They hire developers who write code. Doesn't
really matters in which language.

Long story short - I strongly believe you are trying to solve a problem
that doesn't exist. And probably create a few new ones.

[1]: http://eax.me/c-vs-cpp/
[2]: http://eax.me/cpp-will-never-die/
[3]: http://www.viva64.com/en/b/0324/

--
Best regards,
Aleksander Alekseev

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

#14Joy Arulraj
jarulraj@cs.cmu.edu
In reply to: Gavin Flower (#9)
hackersgeneral
Re: C++ port of Postgres

On Tue, Aug 16, 2016 at 3:52 AM, Gavin Flower <GavinFlower@archidevsys.co.nz

wrote:

On 16/08/16 18:24, dandl wrote:

Just wondering what the end goal is for this project... Is it to just
maintain an up to date Postgres fork that will compile with a C++ compiler?
Is it to get a conversation going for a direction for Postgres itself to
move? The former I don't see gaining much traction or doing all that much
for the state of the project. The latter possibly could if the community
gets on board.

I was kind of hoping that this might start off a coversation on getting
postgres to support C++.

I would certainly hope the latter. Having done some work on extension

functions and an extension language for Postgres, the current situation can
be quite limiting.

·Parts of my code could only be written in C++, so I finished up with a
mixed build, which is not ideal.

·My other issue was dealing with the Datum macros. Type-safe inline C++
functions would help reduce dumb errors.

Not compelling reasons perhaps, but just a vote for a move in that
direction, some time.

I concur.

Show quoted text

Regards

David M Bennett FACS

/
------------------------------------------------------------------------
/

/Andl - A New Database Language - andl.org/

I note that gcc itself is now written in C++, and so is squid (web

proxy)...

In both cases, part of the motivation to change from C was to appeal to
new developers - from what I remember of the discussions.

Cheers,
Gavin

#15Joy Arulraj
jarulraj@cs.cmu.edu
In reply to: FarjadFarid(ChkNet) (#10)
hackersgeneral
Re: C++ port of Postgres

Thanks, I do hope so.

On Tue, Aug 16, 2016 at 7:00 AM, FarjadFarid(ChkNet) <
farjad.farid@checknetworks.com> wrote:

Show quoted text

Well done. This is a much needed conversion. As Peter’s article says, it
does open up more opportunities.

*From:* pgsql-general-owner@postgresql.org [mailto:pgsql-general-owner@
postgresql.org] *On Behalf Of *Joy Arulraj
*Sent:* 14 August 2016 22:06
*To:* pgsql-general@postgresql.org
*Subject:* [GENERAL] C++ port of Postgres

Hi folks --

We have ported Postgres over to the C++ language (C++11 standard).

https://github.com/jarulraj/postgresql-cpp

Our goal is to use certain features of the C++ language and its standard
library to simplify coding, improve code reuse, and avoid bugs. Peter's
article titled `Moving to C++
<https://petereisentraut.blogspot.com/2013/05/moving-to-c.html&gt;` was a
source of inspiration for us.

Regards.

#16Heikki Linnakangas
heikki.linnakangas@enterprisedb.com
In reply to: Jim Nasby (#11)
hackersgeneral
Re: [GENERAL] C++ port of Postgres

On 08/16/2016 05:47 PM, Jim Nasby wrote:

I realize there's little technical reason why we *need* C++ support. The
level if discipline applied to our codebase negates some of the benefits
of C++. But maintaining the discipline takes a lot of time and effort,
and makes it more difficult to attract new contributors.

I suspect that it would take as much discipline to keep a C++ codebase
readable, as the current C codebase. If not more.

- Heikki

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

#17Yury Zhuravlev
u.zhuravlev@postgrespro.ru
In reply to: Aleksander Alekseev (#13)
hackersgeneral
Re: [GENERAL] C++ port of Postgres

Aleksander Alekseev wrote:

You are right, there is none.

First: trees in parser, planer and etc.
Second: normal exception.

Two big projects lately move to C++ from C:
GCC, Mesa

You can read their reasons.
Only C++ we can use without full rewrite currently. (or ObjectC maybe)
If we wish fix C limitations.

--
Yury Zhuravlev
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

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

#18Robert Haas
robertmhaas@gmail.com
In reply to: Jim Nasby (#11)
hackersgeneral
Re: [GENERAL] C++ port of Postgres

On Tue, Aug 16, 2016 at 10:47 AM, Jim Nasby <Jim.Nasby@bluetreble.com> wrote:

On 8/16/16 2:52 AM, Gavin Flower wrote:

In both cases, part of the motivation to change from C was to appeal to
new developers - from what I remember of the discussions.

Moving this to -hackers. Original thread at [1].

tl;dr: A C++ port of Postgres has been created, and several folks on general
have commented that this makes it easier to work with the Postgres codebase.
This potentially attracts more developers to the project. I hope we can find
a way to pull these folks into the fold.

People in core have complained that we don't have enough hackers coming in
(which I agree with). Part of that is lack of familiarity with C.

I think we can all agree that a C++ fork of Postgres would be a huge waste
of time, so the question becomes should core postgres start supporting C++.

Peter wrote a blog about this in 2013 that makes some good arguments [2]; in
particular "easing into" this by first officially supporting C++
compilation. I also like the idea of investigating Rust.

I'm not really interested in supporting PostgreSQL code written in
other languages entirely, such as Rust, but I do think it would make
sense to write our code so that it can be compiled using either a C
compiler or a C++ compiler. Even if we don't ever use any C++ code in
core, this would let people who create forks or extensions use it if
they wished. It wouldn't be that much work to maintain, either: we'd
just set up some buildfarm members that compiled using C++ and when
they turned red, we'd go fix it.

I agree with your statement that one of our biggest problems is
getting more developers interested in working on PostgreSQL. Even if
there's only a 10% chance that something like this will help, why not?
We're not talking about moving the earth.

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

#19Joshua D. Drake
jd@commandprompt.com
In reply to: Robert Haas (#18)
hackersgeneral
Re: [GENERAL] C++ port of Postgres

On 08/16/2016 09:33 AM, Robert Haas wrote:

On Tue, Aug 16, 2016 at 10:47 AM, Jim Nasby <Jim.Nasby@bluetreble.com> wrote:

On 8/16/16 2:52 AM, Gavin Flower wrote:

I agree with your statement that one of our biggest problems is
getting more developers interested in working on PostgreSQL. Even if
there's only a 10% chance that something like this will help, why not?
We're not talking about moving the earth.

Right. It is just reality that less people are learning C which means
less people will be interested in joining a project that is focused or
(required) to be C.

Sincerely,

JD

--
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.
Unless otherwise stated, opinions are my own.

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

#20Tom Lane
tgl@sss.pgh.pa.us
In reply to: Robert Haas (#18)
hackersgeneral
Re: [GENERAL] C++ port of Postgres

Robert Haas <robertmhaas@gmail.com> writes:

I'm not really interested in supporting PostgreSQL code written in
other languages entirely, such as Rust, but I do think it would make
sense to write our code so that it can be compiled using either a C
compiler or a C++ compiler. Even if we don't ever use any C++ code in
core, this would let people who create forks or extensions use it if
they wished. It wouldn't be that much work to maintain, either: we'd
just set up some buildfarm members that compiled using C++ and when
they turned red, we'd go fix it.

I think this might have advantages purely from the standpoint of new
compilers possibly offering useful warnings we don't get now. But
if we only go this far, I'm pretty dubious that it really helps people
to develop extensions in C++. Almost invariably, if you ask *why* they
want to do that, you'll get an answer involving C++ libraries that are
not going to play very nice with our error handling or memory management
conventions. I do not see how we could C++-ify the error handling without
making a complete break with C compilers ... which is a step I don't
really want to take.

The whole thing would make a lot more sense given a credible design
for error handling that keeps both languages happy.

A lot of the other things people have muttered about, such as heavier
use of inline functions instead of macros, don't particularly need C++
at all.

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

#21Robert Haas
robertmhaas@gmail.com
In reply to: Tom Lane (#20)
hackersgeneral
#22Joy Arulraj
jarulraj@cs.cmu.edu
In reply to: Robert Haas (#21)
hackersgeneral
#23Dmitriy Igrishin
dmitigr@gmail.com
In reply to: Heikki Linnakangas (#16)
hackersgeneral
#24Jim Nasby
Jim.Nasby@BlueTreble.com
In reply to: Gavin Flower (#9)
hackersgeneral
#25Jim Nasby
Jim.Nasby@BlueTreble.com
In reply to: Joy Arulraj (#22)
hackersgeneral
#26Andres Freund
andres@anarazel.de
In reply to: Heikki Linnakangas (#16)
hackersgeneral
In reply to: Tom Lane (#20)
hackersgeneral
#28Jim Nasby
Jim.Nasby@BlueTreble.com
In reply to: Aleksander Alekseev (#13)
hackersgeneral
#29Andres Freund
andres@anarazel.de
In reply to: Tom Lane (#20)
hackersgeneral
In reply to: Peter Geoghegan (#27)
hackersgeneral
#31Jim Nasby
Jim.Nasby@BlueTreble.com
In reply to: Andres Freund (#26)
hackersgeneral
#32Andres Freund
andres@anarazel.de
In reply to: Peter Geoghegan (#30)
hackersgeneral
#33Tom Lane
tgl@sss.pgh.pa.us
In reply to: Andres Freund (#32)
hackersgeneral
#34Piotr Stefaniak
postgres@piotr-stefaniak.me
In reply to: Robert Haas (#18)
hackersgeneral
In reply to: Tom Lane (#33)
hackersgeneral
#36Andres Freund
andres@anarazel.de
In reply to: Tom Lane (#33)
hackersgeneral
#37Chris Browne
cbbrowne@acm.org
In reply to: Piotr Stefaniak (#34)
hackersgeneral
#38Joy Arulraj
jarulraj@cs.cmu.edu
In reply to: Jim Nasby (#25)
hackersgeneral
#39dandl
david@andl.org
In reply to: Robert Haas (#21)
hackersgeneral
#40Andres Freund
andres@anarazel.de
In reply to: dandl (#39)
hackersgeneral
#41Tsunakawa, Takayuki
tsunakawa.takay@jp.fujitsu.com
In reply to: Chris Browne (#37)
hackersgeneral
#42Andres Freund
andres@anarazel.de
In reply to: Adam Brusselback (#7)
hackersgeneral
#43dandl
david@andl.org
In reply to: Andres Freund (#40)
hackersgeneral
#44Craig Ringer
craig@2ndquadrant.com
In reply to: Andres Freund (#42)
hackersgeneral
#45Aleksander Alekseev
aleksander@timescale.com
In reply to: Yury Zhuravlev (#17)
hackersgeneral
#46Aleksander Alekseev
aleksander@timescale.com
In reply to: Jim Nasby (#28)
hackersgeneral
#47Serge Rielau
srielau@gmail.com
In reply to: Craig Ringer (#44)
hackersgeneral
#48Dmitriy Igrishin
dmitigr@gmail.com
In reply to: Aleksander Alekseev (#46)
hackersgeneral
#49Robert Haas
robertmhaas@gmail.com
In reply to: Piotr Stefaniak (#34)
hackersgeneral
#50Andrew Gierth
andrew@tao11.riddles.org.uk
In reply to: Robert Haas (#49)
hackersgeneral
#51Robert Haas
robertmhaas@gmail.com
In reply to: Andrew Gierth (#50)
hackersgeneral
#52Gavin Flower
GavinFlower@archidevsys.co.nz
In reply to: Aleksander Alekseev (#46)
hackersgeneral
#53Craig Ringer
craig@2ndquadrant.com
In reply to: Gavin Flower (#52)
hackersgeneral
#54Peter Eisentraut
peter_e@gmx.net
In reply to: Jim Nasby (#25)
hackersgeneral
#55Christian Convey
christian.convey@gmail.com
In reply to: Peter Eisentraut (#54)
hackersgeneral
#56Heikki Linnakangas
heikki.linnakangas@enterprisedb.com
In reply to: Peter Eisentraut (#54)
hackersgeneral
#57Tom Lane
tgl@sss.pgh.pa.us
In reply to: Christian Convey (#55)
hackersgeneral
#58Christian Convey
christian.convey@gmail.com
In reply to: Tom Lane (#57)
hackersgeneral
#59Christian Convey
christian.convey@gmail.com
In reply to: Christian Convey (#58)
hackersgeneral
#60Tom Lane
tgl@sss.pgh.pa.us
In reply to: Christian Convey (#59)
hackersgeneral
#61Christian Convey
christian.convey@gmail.com
In reply to: Christian Convey (#58)
hackersgeneral
#62Christian Convey
christian.convey@gmail.com
In reply to: Joy Arulraj (#1)
hackersgeneral
#63Heikki Linnakangas
heikki.linnakangas@enterprisedb.com
In reply to: Christian Convey (#61)
hackersgeneral
#64Heikki Linnakangas
heikki.linnakangas@enterprisedb.com
In reply to: Christian Convey (#61)
hackersgeneral
#65Christian Convey
christian.convey@gmail.com
In reply to: Heikki Linnakangas (#64)
hackersgeneral
#66Christian Convey
christian.convey@gmail.com
In reply to: Peter Eisentraut (#54)
hackersgeneral
#67Joy Arulraj
jarulraj@cs.cmu.edu
In reply to: Christian Convey (#62)
hackersgeneral
#68Thomas Munro
thomas.munro@gmail.com
In reply to: Peter Eisentraut (#54)
hackersgeneral
#69Thomas Munro
thomas.munro@gmail.com
In reply to: Thomas Munro (#68)
hackersgeneral
#70Peter Eisentraut
peter_e@gmx.net
In reply to: Heikki Linnakangas (#56)
hackersgeneral
#71Peter Eisentraut
peter_e@gmx.net
In reply to: Thomas Munro (#69)
hackersgeneral
#72Andres Freund
andres@anarazel.de
In reply to: Peter Eisentraut (#71)
hackersgeneral
#73Peter Eisentraut
peter_e@gmx.net
In reply to: Andres Freund (#72)
hackersgeneral
#74Andres Freund
andres@anarazel.de
In reply to: Peter Eisentraut (#73)
hackersgeneral
#75Andres Freund
andres@anarazel.de
In reply to: Andres Freund (#74)
hackersgeneral
#76Peter Eisentraut
peter_e@gmx.net
In reply to: Andres Freund (#75)
hackersgeneral