Skip to content

Commit cbe600f

Browse files
author
James William Pye
committed
Bind as local.
1 parent 3e57b79 commit cbe600f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

postgresql/driver/pq3.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,9 @@ def _process_tuple_chunk_Row(self, x,
271271
proc = process_chunk,
272272
from_seq = Row.from_sequence,
273273
):
274+
attmap = self._output_attmap
274275
return [
275-
from_seq(self._output_attmap, y)
276+
from_seq(attmap, y)
276277
for y in proc(self._output_io, x, self._raise_column_tuple_error)
277278
]
278279

0 commit comments

Comments
 (0)