pub fn parse_streaming_sql(
sql: &str,
) -> Result<Vec<StreamingStatement>, ParseError>Expand description
Parses SQL with streaming extensions.
Routes streaming DDL to custom parsers that use sqlparser’s Parser API
for structured parsing. Standard SQL is delegated to sqlparser directly.
§Errors
Returns ParseError if the SQL syntax is invalid.