mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-07 17:04:59 +00:00
code cleanup
This commit is contained in:
parent
efa1f953b4
commit
d0c7c7eccf
1 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ use IsLateral::*;
|
|||
use IsOptional::*;
|
||||
|
||||
use crate::ast::helpers::stmt_create_table::{CreateTableBuilder, CreateTableConfiguration};
|
||||
use crate::ast::Statement::{CreatePolicy, CreateServer};
|
||||
use crate::ast::Statement::CreatePolicy;
|
||||
use crate::ast::*;
|
||||
use crate::dialect::*;
|
||||
use crate::keywords::{Keyword, ALL_KEYWORDS};
|
||||
|
@ -15841,7 +15841,7 @@ impl<'a> Parser<'a> {
|
|||
self.expect_token(&Token::RParen)?;
|
||||
}
|
||||
|
||||
Ok(CreateServer(CreateServerStatement {
|
||||
Ok(Statement::CreateServer(CreateServerStatement {
|
||||
name,
|
||||
if_not_exists: ine,
|
||||
server_type,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue