mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-02 05:02:16 +00:00
feat: support explain options (#1426)
This commit is contained in:
parent
1c505ce736
commit
04a53e5753
7 changed files with 269 additions and 8 deletions
|
@ -166,6 +166,11 @@ impl Dialect for PostgreSqlDialect {
|
|||
fn supports_create_index_with_clause(&self) -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
/// see <https://www.postgresql.org/docs/current/sql-explain.html>
|
||||
fn supports_explain_with_utility_options(&self) -> bool {
|
||||
true
|
||||
}
|
||||
}
|
||||
|
||||
pub fn parse_comment(parser: &mut Parser) -> Result<Statement, ParserError> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue