mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-09-03 04:37:21 +00:00
Allow to use the TABLE keyword in DESC|DESCRIBE|EXPLAIN TABLE statement (#1351)
This commit is contained in:
parent
547d82f07d
commit
7fdb2ec5d1
3 changed files with 42 additions and 12 deletions
|
@ -7972,10 +7972,13 @@ impl<'a> Parser<'a> {
|
|||
_ => {}
|
||||
}
|
||||
|
||||
// only allow to use TABLE keyword for DESC|DESCRIBE statement
|
||||
let has_table_keyword = self.parse_keyword(Keyword::TABLE);
|
||||
let table_name = self.parse_object_name(false)?;
|
||||
Ok(Statement::ExplainTable {
|
||||
describe_alias,
|
||||
hive_format,
|
||||
has_table_keyword,
|
||||
table_name,
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue