mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-09-04 05:00:34 +00:00
Re-run cargo fmt
This commit is contained in:
parent
23a0fc79f5
commit
f30ab89ad2
3 changed files with 26 additions and 5 deletions
|
@ -640,7 +640,11 @@ impl Parser {
|
|||
self.expect_keyword("AS")?;
|
||||
let query = self.parse_query()?;
|
||||
// Optional `WITH [ CASCADED | LOCAL ] CHECK OPTION` is widely supported here.
|
||||
Ok(SQLStatement::SQLCreateView { name, query, materialized })
|
||||
Ok(SQLStatement::SQLCreateView {
|
||||
name,
|
||||
query,
|
||||
materialized,
|
||||
})
|
||||
}
|
||||
|
||||
pub fn parse_create_table(&mut self) -> Result<SQLStatement, ParserError> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue