Re: [GENERAL] Modifying SQL parser with extensions?

2006-10-29 Thread Matthias Lüdtke
Richard Troy wrote: Our package lets you pass individual statements or entire files full of SQL with embeded comments as it's not that uncommon among SQL dialects - they're just stripped out before getting to the engine, as Alvaro suggested. Unfortunately I need the information in the statemen

Re: [GENERAL] Modifying SQL parser with extensions?

2006-10-29 Thread Matthias Lüdtke
Alvaro Herrera wrote: I am searching for the easiest way to let PostgreSQL parse a special dialect of SQL. The dialect I want to parse augments common SQL in a way that enables expressions within a WHERE clause to be annotated and is thus not compatible with the standard SQL syntax anymore. N

[GENERAL] Modifying SQL parser with extensions?

2006-10-29 Thread Matthias Lüdtke
Hi everyone, I am searching for the easiest way to let PostgreSQL parse a special dialect of SQL. The dialect I want to parse augments common SQL in a way that enables expressions within a WHERE clause to be annotated and is thus not compatible with the standard SQL syntax anymore. I am tota