File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -101,12 +101,12 @@ def fetchall(self) -> List[Row]:
101
101
pass
102
102
103
103
@abstractmethod
104
- def fetchmany_arrow (self , size : int ) -> Any :
104
+ def fetchmany_arrow (self , size : int ) -> "pyarrow.Table" :
105
105
"""Fetch the next set of rows as an Arrow table."""
106
106
pass
107
107
108
108
@abstractmethod
109
- def fetchall_arrow (self ) -> Any :
109
+ def fetchall_arrow (self ) -> "pyarrow.Table" :
110
110
"""Fetch all remaining rows as an Arrow table."""
111
111
pass
112
112
@@ -251,7 +251,7 @@ def _convert_arrow_table(self, table):
251
251
res = df .to_numpy (na_value = None , dtype = "object" )
252
252
return [ResultRow (* v ) for v in res ]
253
253
254
- def merge_columnar (self , result1 , result2 ):
254
+ def merge_columnar (self , result1 , result2 ) -> "ColumnTable" :
255
255
"""
256
256
Function to merge / combining the columnar results into a single result
257
257
:param result1:
You can’t perform that action at this time.
0 commit comments