We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58c8644 commit e773c49Copy full SHA for e773c49
src/snowflake/connector/aio/_result_set.py
@@ -174,7 +174,12 @@ def __init__(
174
result_chunks: list[JSONResultBatch] | list[ArrowResultBatch],
175
prefetch_thread_num: int,
176
) -> None:
177
- super().__init__(cursor, result_chunks, prefetch_thread_num)
+ super().__init__(
178
+ cursor,
179
+ result_chunks,
180
+ prefetch_thread_num,
181
+ use_mp=False, # async code depends on aio rather than multiprocessing
182
+ )
183
self.batches = cast(
184
Union[list[JSONResultBatch], list[ArrowResultBatch]], self.batches
185
)
0 commit comments