You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix columns property to handle lazy SegmentIterator
Commit a2a1001 made fetch() return a lazy SegmentIterator for spooled
results but did not update the columns property which still used
`+= self.fetch()`. This raises TypeError when _result.rows is an
itertools.chain object and silently materializes the iterator when
_result.rows is a list.
Apply the same isinstance branching already present in execute().
0 commit comments