Skip to content

Commit e9cba4e

Browse files
authored
Merge pull request #98 from LeoniePhiline/fix/impl-debug-for-lob-locator
fix: correct struct name in `impl fmt::Debug for LobLocator`
2 parents f3f61d6 + 0e12257 commit e9cba4e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/sql_type/lob.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,11 @@ impl Clone for LobLocator {
332332

333333
impl fmt::Debug for LobLocator {
334334
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
335-
write!(f, "Lob {{ handle: {:?}, pos: {} }} ", self.handle, self.pos)
335+
write!(
336+
f,
337+
"LobLocator {{ handle: {:?}, pos: {} }} ",
338+
self.handle, self.pos
339+
)
336340
}
337341
}
338342

0 commit comments

Comments
 (0)