Skip to content

Commit

Permalink
fixed warnings: unused import: DataType
Browse files Browse the repository at this point in the history
  • Loading branch information
walf443 committed Jun 4, 2022
1 parent 3bdd692 commit fe780da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sqlx-core/src/mssql/protocol/return_value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ use bytes::{Buf, Bytes};
use crate::error::Error;
use crate::mssql::io::MssqlBufExt;
use crate::mssql::protocol::col_meta_data::Flags;
use crate::mssql::protocol::type_info::{DataType, TypeInfo};
#[cfg(test)]
use crate::mssql::protocol::type_info::DataType;
use crate::mssql::protocol::type_info::TypeInfo;

#[allow(dead_code)]
#[derive(Debug)]
Expand Down

0 comments on commit fe780da

Please sign in to comment.