We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a64ca5f commit 51ace90Copy full SHA for 51ace90
1 file changed
src/lib.rs
@@ -1644,10 +1644,9 @@ impl<'a> PostgresCopyInStatement<'a> {
1644
let _ = buf.write_be_i32(0);
1645
1646
1647
- for row in rows {
+ for mut row in rows {
1648
let _ = buf.write_be_i16(self.column_types.len() as i16);
1649
1650
- let mut row = row.fuse();
1651
let mut types = self.column_types.iter();
1652
loop {
1653
match (row.next(), types.next()) {
0 commit comments