Re: Parser extensions (maybe for 10?) - Mailing list pgsql-hackers

From David G. Johnston
Subject Re: Parser extensions (maybe for 10?)
Date
Msg-id CAKFQuwaZFq4XgdZOadbMOwEw9-QUYcUJ_xAVV3eJf_pOY6kRnA@mail.gmail.com
Whole thread Raw
In response to Re: Parser extensions (maybe for 10?)  ("Tsunakawa, Takayuki" <tsunakawa.takay@jp.fujitsu.com>)
Responses Re: Parser extensions (maybe for 10?)  (Craig Ringer <craig@2ndquadrant.com>)
List pgsql-hackers
On Mon, Apr 11, 2016 at 9:58 PM, Tsunakawa, Takayuki <tsunakawa.takay@jp.fujitsu.com> wrote:

From: pgsql-hackers-owner@postgresql.org [mailto:pgsql-hackers-owner@postgresql.org] On Behalf Of Arcadiy Ivanov

Currently the parser and lexer are fully fixed at compile-time and not amenable to the extensions - extensions are only capable of introducing functions etc.

There is, however, an advantage to being able if not add or alter complete statements (which would be nice), but to at least augment portions of syntax for existing ones in some places.

 

I saw the following discussion in the past, but I haven’t read it:

 

Pluggable Parser

http://www.postgresql.org/message-id/BF2827DCCE55594C8D7A8F7FFD3AB77159878C2A@szxeml521-mbs.china.huawei.com

 

I’m interested in the pluggable, extensible parser for two purposes.  One is to add compatibility for other databases.

 

The other is for the ODBC (and possibly JDBC) driver.

The ODBC/JDBC specs require some unique syntax constructs, e.g. {? = call funcname(arguments)} to call stored procs/functions.  Currently, the ODBC/JDBC drivers are forced to parse and convert SQL statements.  It is ideal for PostgreSQL itself to understand the ODBC/JDBC syntax, and eliminate the burdon of parsing statements from the JDBC/ODBC drivers.


​As recently discovered there is more than one reason why an intelligent driver, like the JDBC standard at least requires in a few instances, requires knowledge of at least some basic structure​
 
​of the statements it sees before sending them off to the server.  Furthermore, and particularly in the JDBC example you provide, my first reaction is that it would be a massive encapsulation violation to try and get PostgreSQL to understand "{? = call funcname(args)}" and similar higher level API specifications.

I think PostgreSQL can do quite well by saying, hey this is what we are and this is what we do.  Compatibility has merit but I'm sure at least some of those items can make it into the bison files - regardless of whether those changes end up being accepted into core.  Small-scale forking like this seems like it would be easier to accomplish if not preferable to making the entire thing modular.  We have that option to offer others since we are an open source project.

David J.

pgsql-hackers by date:

Previous
From: Craig Ringer
Date:
Subject: Re: Parser extensions (maybe for 10?)
Next
From: Craig Ringer
Date:
Subject: Re: Parser extensions (maybe for 10?)