Re-run cargo fmt

This commit is contained in:
Nickolay Ponomarev 2019-03-08 15:46:40 +03:00
parent 23a0fc79f5
commit f30ab89ad2
3 changed files with 26 additions and 5 deletions

View file

@ -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> {