Closed
Description
While working on apache/datafusion#12014 I noticed that
describe table;
Is now invalid SQL, presumably table
is now a keyword or similar now?
Error:
ParserError("Expected: identifier, found: ; at Line: 1, Column: 15"
Simple failing test:
#[test]
fn test_describe_table() {
Parser::parse_sql(&GenericDialect {}, "describe table;").unwrap();
}