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" which seems to utilize the production rule. I do see that the method is public, so is there another way to utilize it (apart from directly calling `planner.parse(sqlString)`.
Thanks and Regards Laksh
