Re: Parsing multiple SQL statements using Calcite

2022-01-27 Thread Laksh Singla
Thanks Julian for clearing up the doubt. Regards Laksh On Sat, Jan 22, 2022 at 12:48 AM Julian Hyde wrote: > You are right. We support parsing multiple statements [1] but we don’t > support multi-statement validation, multi-statement planning or > multi-statement execution. > > Julian > > >

Re: Parsing multiple SQL statements using Calcite

2022-01-21 Thread Julian Hyde
You are right. We support parsing multiple statements [1] but we don’t support multi-statement validation, multi-statement planning or multi-statement execution. Julian [1] https://issues.apache.org/jira/browse/CALCITE-2453 . > On Jan 20,

Parsing multiple SQL statements using Calcite

2022-01-20 Thread Laksh Singla
Hi, I was wondering if there's a way to parse multiple SQL statements in Calcite. In the reference grammar, there is a "statementList" production rule which allows for parsing multiple statements. However, in the Calcite's code, I didn't find any usage of the method "SqlNodeList parseStmtList"