Skip to content

Commit e185e41

Browse files
authored
Fix clippy warnings (#121)
1 parent fc9a01b commit e185e41

3 files changed

Lines changed: 1 addition & 13 deletions

File tree

src/mysql/writer/mod.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ mod index;
66
mod table;
77
mod types;
88

9-
pub use column::*;
10-
pub use foreign_key::*;
11-
pub use index::*;
12-
pub use table::*;
13-
pub use types::*;
14-
159
use super::def::Schema;
1610
use sea_query::TableCreateStatement;
1711

src/postgres/writer/mod.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,6 @@ mod schema;
55
mod table;
66
mod types;
77

8-
pub use column::*;
9-
pub use constraints::*;
10-
pub use enumeration::*;
11-
pub use schema::*;
12-
pub use table::*;
13-
pub use types::*;
14-
158
use super::def::Schema;
169
use sea_query::TableCreateStatement;
1710

src/probe.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ pub enum Has {
5353
Index,
5454
}
5555

56+
#[allow(clippy::enum_variant_names)]
5657
#[derive(Debug, Iden)]
5758
pub(crate) enum Schema {
5859
#[iden = "information_schema"]

0 commit comments

Comments
 (0)