File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -812,7 +812,7 @@ def fetch_df_all(
812812 arraysize : Optional [int ] = None ,
813813 ):
814814 """
815- Fetch all data as OracleDataFrame .
815+ Fetch all data as an instance of DataFrame .
816816 """
817817 cursor = self .cursor ()
818818 cursor ._impl .fetching_arrow = True
@@ -829,7 +829,7 @@ def fetch_df_batches(
829829 size : Optional [int ] = None ,
830830 ):
831831 """
832- Fetch data in batches. Each batch is an OracleDataFrame
832+ Fetch data in batches. Each batch is an instance of DataFrame
833833 """
834834 cursor = self .cursor ()
835835 cursor ._impl .fetching_arrow = True
@@ -1837,7 +1837,7 @@ async def fetch_df_all(
18371837 arraysize : Optional [int ] = None ,
18381838 ):
18391839 """
1840- Fetch all data as OracleDataFrame .
1840+ Fetch all data as an instance of DataFrame .
18411841 """
18421842 cursor = self .cursor ()
18431843 cursor ._impl .fetching_arrow = True
@@ -1854,7 +1854,7 @@ async def fetch_df_batches(
18541854 size : Optional [int ] = None ,
18551855 ):
18561856 """
1857- Fetch data in batches. Each batch is an OracleDataFrame
1857+ Fetch data in batches. Each batch is an instance of DataFrame
18581858 """
18591859 cursor = self .cursor ()
18601860 cursor ._impl .fetching_arrow = True
Original file line number Diff line number Diff line change @@ -810,7 +810,7 @@ def fetch_df_all(
810810 arraysize : Optional [int ] = None ,
811811 ):
812812 """
813- Fetch all data as OracleDataFrame .
813+ Fetch all data as an instance of DataFrame .
814814 """
815815 cursor = self .cursor ()
816816 cursor ._impl .fetching_arrow = True
@@ -827,7 +827,7 @@ def fetch_df_batches(
827827 size : Optional [int ] = None ,
828828 ):
829829 """
830- Fetch data in batches. Each batch is an OracleDataFrame
830+ Fetch data in batches. Each batch is an instance of DataFrame
831831 """
832832 cursor = self .cursor ()
833833 cursor ._impl .fetching_arrow = True
@@ -1583,7 +1583,7 @@ async def fetch_df_all(
15831583 arraysize : Optional [int ] = None ,
15841584 ):
15851585 """
1586- Fetch all data as OracleDataFrame .
1586+ Fetch all data as an instance of DataFrame .
15871587 """
15881588 cursor = self .cursor ()
15891589 cursor ._impl .fetching_arrow = True
@@ -1600,7 +1600,7 @@ async def fetch_df_batches(
16001600 size : Optional [int ] = None ,
16011601 ):
16021602 """
1603- Fetch data in batches. Each batch is an OracleDataFrame
1603+ Fetch data in batches. Each batch is an instance of DataFrame
16041604 """
16051605 cursor = self .cursor ()
16061606 cursor ._impl .fetching_arrow = True
You can’t perform that action at this time.
0 commit comments