From 837c16a163453dcc735ff2f4c878387fb70beee2 Mon Sep 17 00:00:00 2001 From: laughingman7743 Date: Sat, 17 Aug 2024 23:00:40 +0900 Subject: [PATCH] Fix to set result_reuse_enable and result_reuse_minutes in AsyncPandasCursor. --- pyathena/pandas/async_cursor.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyathena/pandas/async_cursor.py b/pyathena/pandas/async_cursor.py index 519eebf9..5668204b 100644 --- a/pyathena/pandas/async_cursor.py +++ b/pyathena/pandas/async_cursor.py @@ -50,6 +50,8 @@ def __init__( kill_on_interrupt=kill_on_interrupt, max_workers=max_workers, arraysize=arraysize, + result_reuse_enable=result_reuse_enable, + result_reuse_minutes=result_reuse_minutes, **kwargs, ) self._unload = unload