[GENERAL] C++ port of Postgres

2016-08-14 Thread Joy Arulraj
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++

Re: [GENERAL] C++ port of Postgres

2016-08-14 Thread Joy Arulraj
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" wrote: > Hi Joy, > > 2016-08-15 0:05 GMT+03

Re: [GENERAL] C++ port of Postgres

2016-08-14 Thread Joy Arulraj
5. PS: I had this requirement > circumtances. > > On 8/15/16, Joy Arulraj 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.

Re: [GENERAL] C++ port of Postgres

2016-08-16 Thread Joy Arulraj
On Tue, Aug 16, 2016 at 3:52 AM, Gavin Flower 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

Re: [GENERAL] C++ port of Postgres

2016-08-16 Thread Joy Arulraj
gresql.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++ lang

Re: [GENERAL] C++ port of Postgres

2016-09-23 Thread Joy Arulraj
se, I would be very glad to see PostgreSQL support C++. Regards. On Sun, Sep 11, 2016 at 6:47 AM, Christian Convey < christian.con...@gmail.com> wrote: > On Sun, Aug 14, 2016 at 5:05 PM, Joy Arulraj wrote: > > Hi folks -- > > > > We have ported Postgres over to

[GENERAL] Automatically check for anti-patterns in SQL queries

2017-10-08 Thread Joy Arulraj
Hi folks -- We developed a static analysis tool, called SQLCheck, for automatically identifying anti-patterns in SQL queries. https://github.com/jarulraj/sqlcheck Our goal is to provide hints to the developers about potential performance and security issues present in SQL queries. I believe that