mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-08 01:15:00 +00:00
code cleanup
This commit is contained in:
parent
69a060f64f
commit
b475fbb932
2 changed files with 1 additions and 3 deletions
|
@ -29,7 +29,6 @@ use helpers::{
|
||||||
};
|
};
|
||||||
|
|
||||||
use core::cmp::Ordering;
|
use core::cmp::Ordering;
|
||||||
use core::fmt::Formatter;
|
|
||||||
use core::ops::Deref;
|
use core::ops::Deref;
|
||||||
use core::{
|
use core::{
|
||||||
fmt::{self, Display},
|
fmt::{self, Display},
|
||||||
|
@ -7994,7 +7993,7 @@ pub struct CreateServerStatement {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Display for CreateServerStatement {
|
impl fmt::Display for CreateServerStatement {
|
||||||
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
let CreateServerStatement {
|
let CreateServerStatement {
|
||||||
name,
|
name,
|
||||||
if_not_exists,
|
if_not_exists,
|
||||||
|
|
|
@ -163,7 +163,6 @@ extern crate alloc;
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
extern crate pretty_assertions;
|
extern crate pretty_assertions;
|
||||||
extern crate core;
|
|
||||||
|
|
||||||
pub mod ast;
|
pub mod ast;
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue