Skip to content

Commit afe4a43

Browse files
committed
Refactor: Remove redundant comment about decode_column_name in odbc_bridge.rs
1 parent 4bc052f commit afe4a43

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

sqlx-core/src/odbc/connection/odbc_bridge.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1+
use super::decode_column_name;
12
use crate::error::Error;
23
use crate::odbc::{
34
connection::MaybePrepared, OdbcArgumentValue, OdbcArguments, OdbcColumn, OdbcQueryResult,
45
OdbcRow, OdbcTypeInfo,
56
};
6-
use super::decode_column_name;
77
use either::Either;
88
use flume::{SendError, Sender};
99
use odbc_api::handles::{AsStatementRef, Statement};
@@ -140,8 +140,6 @@ where
140140
}
141141
}
142142

143-
// decode_column_name is provided by connection/mod.rs
144-
145143
fn stream_rows<C>(cursor: &mut C, columns: &[OdbcColumn], tx: &ExecuteSender) -> Result<bool, Error>
146144
where
147145
C: Cursor,

0 commit comments

Comments
 (0)