Re: Parsing Teradata SQL with Apache Calcite

2020-03-28 Thread David Valenzuela Rodriguez
pache/calcite/blob/52a57078ba081b24b9d086ed363c715485d1a519/core/src/main/java/org/apache/calcite/sql/fun/SqlLibrary.java Is that accurate? Thanks! David On Thu, Mar 26, 2020 at 5:13 PM David Valenzuela Rodriguez < davi...@groupon.com> wrote: > Awesome, thanks! > > David > > On

Re: Parsing Teradata SQL with Apache Calcite

2020-03-26 Thread David Valenzuela Rodriguez
parse Teradata SQL, you probably need to create a library (for > functions) and a conformance. Maybe a new constant Lex.TERADATA. > > Julian > > > If you want to parse Tera > > On Thu, Mar 26, 2020 at 3:44 PM David Valenzuela Rodriguez > wrote: > > > > Hi

Parsing Teradata SQL with Apache Calcite

2020-03-26 Thread David Valenzuela Rodriguez
Hi! I'm currently evaluating the Apache Calcite framework for the purposes of parsing Teradata SQL. As far as I can tell, this is accomplished by defining a SqlOperatorTable with TD-specific operators. Other than that, I'm not really sure how to integrate that SqlOperatorTable into the Parser/Plan