Closed
Description
sqlparser::ast::TableFactor::Table
just represents the arguments as a Vec<FunctionArg>
both
SELECT * FROM foo
and SELECT * FROM foo()
and are parsed as:
Table { name: ObjectName([Ident { value: "foo", quote_style: None }]), alias: None, args: [], with_hints: [] }
This is apparently a regression that was introduced in 5652b46 (#73).
Metadata
Metadata
Assignees
Labels
No labels