Skip to content

Commit d9338b6

Browse files
authored
Update mod.rs
1 parent d49bcc5 commit d9338b6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/pg/mod.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,9 @@ impl AsyncPgConnection {
379379

380380
let mut metadata_lookup = PgAsyncMetadataLookup::new(&bind_collector_0.metadata);
381381
let collect_bind_result = query.collect_binds(&mut bind_collector, &mut metadata_lookup, &Pg);
382+
dbg!(&bind_collector.binds);
383+
dbg!(&bind_collector_0.binds);
384+
dbg!(&bind_collector_1.binds);
382385

383386
let fake_oid_locations = std::iter::zip(bind_collector_0.binds, bind_collector_1.binds)
384387
.enumerate()
@@ -389,6 +392,7 @@ impl AsyncPgConnection {
389392
})
390393
// Avoid storing the bind collectors in the returned Future
391394
.collect::<Vec<_>>();
395+
dbg!(&fake_oid_locations);
392396

393397
let raw_connection = self.conn.clone();
394398
let stmt_cache = self.stmt_cache.clone();

0 commit comments

Comments
 (0)