@@ -306,14 +306,14 @@ def read_sql_table(
306
306
chunksize : int, default None
307
307
If specified, returns an iterator where `chunksize` is the number of
308
308
rows to include in each chunk.
309
- dtype_backend : {'numpy_nullable', 'pyarrow'}, default 'numpy_nullable'
309
+ dtype_backend : {'numpy_nullable', 'pyarrow'}
310
310
Back-end data type applied to the resultant :class:`DataFrame`
311
- (still experimental). Behaviour is as follows:
311
+ (still experimental). If not specified, the default behavior
312
+ is to not use nullable data types. If specified, the behavior
313
+ is as follows:
312
314
313
- * ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
314
- (default).
315
- * ``"pyarrow"``: returns pyarrow-backed nullable :class:`ArrowDtype`
316
- DataFrame.
315
+ * ``"numpy_nullable"``: returns with nullable-dtype-backed
316
+ * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
317
317
318
318
.. versionadded:: 2.0
319
319
@@ -443,14 +443,14 @@ def read_sql_query(
443
443
{'a': np.float64, 'b': np.int32, 'c': 'Int64'}.
444
444
445
445
.. versionadded:: 1.3.0
446
- dtype_backend : {'numpy_nullable', 'pyarrow'}, default 'numpy_nullable'
446
+ dtype_backend : {'numpy_nullable', 'pyarrow'}
447
447
Back-end data type applied to the resultant :class:`DataFrame`
448
- (still experimental). Behaviour is as follows:
448
+ (still experimental). If not specified, the default behavior
449
+ is to not use nullable data types. If specified, the behavior
450
+ is as follows:
449
451
450
- * ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
451
- (default).
452
- * ``"pyarrow"``: returns pyarrow-backed nullable :class:`ArrowDtype`
453
- DataFrame.
452
+ * ``"numpy_nullable"``: returns with nullable-dtype-backed
453
+ * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
454
454
455
455
.. versionadded:: 2.0
456
456
@@ -586,14 +586,14 @@ def read_sql(
586
586
chunksize : int, default None
587
587
If specified, return an iterator where `chunksize` is the
588
588
number of rows to include in each chunk.
589
- dtype_backend : {'numpy_nullable', 'pyarrow'}, default 'numpy_nullable'
589
+ dtype_backend : {'numpy_nullable', 'pyarrow'}
590
590
Back-end data type applied to the resultant :class:`DataFrame`
591
- (still experimental). Behaviour is as follows:
591
+ (still experimental). If not specified, the default behavior
592
+ is to not use nullable data types. If specified, the behavior
593
+ is as follows:
592
594
593
- * ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
594
- (default).
595
- * ``"pyarrow"``: returns pyarrow-backed nullable :class:`ArrowDtype`
596
- DataFrame.
595
+ * ``"numpy_nullable"``: returns with nullable-dtype-backed
596
+ * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
597
597
598
598
.. versionadded:: 2.0
599
599
dtype : Type name or dict of columns
@@ -1683,14 +1683,14 @@ def read_table(
1683
1683
chunksize : int, default None
1684
1684
If specified, return an iterator where `chunksize` is the number
1685
1685
of rows to include in each chunk.
1686
- dtype_backend : {'numpy_nullable', 'pyarrow'}, default 'numpy_nullable'
1686
+ dtype_backend : {'numpy_nullable', 'pyarrow'}
1687
1687
Back-end data type applied to the resultant :class:`DataFrame`
1688
- (still experimental). Behaviour is as follows:
1688
+ (still experimental). If not specified, the default behavior
1689
+ is to not use nullable data types. If specified, the behavior
1690
+ is as follows:
1689
1691
1690
- * ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
1691
- (default).
1692
- * ``"pyarrow"``: returns pyarrow-backed nullable :class:`ArrowDtype`
1693
- DataFrame.
1692
+ * ``"numpy_nullable"``: returns with nullable-dtype-backed
1693
+ * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
1694
1694
1695
1695
.. versionadded:: 2.0
1696
1696
@@ -2148,14 +2148,14 @@ def read_table(
2148
2148
schema of the SQL database object.
2149
2149
chunksize : int, default None
2150
2150
Raises NotImplementedError
2151
- dtype_backend : {'numpy_nullable', 'pyarrow'}, default 'numpy_nullable'
2151
+ dtype_backend : {'numpy_nullable', 'pyarrow'}
2152
2152
Back-end data type applied to the resultant :class:`DataFrame`
2153
- (still experimental). Behaviour is as follows:
2153
+ (still experimental). If not specified, the default behavior
2154
+ is to not use nullable data types. If specified, the behavior
2155
+ is as follows:
2154
2156
2155
- * ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
2156
- (default).
2157
- * ``"pyarrow"``: returns pyarrow-backed nullable :class:`ArrowDtype`
2158
- DataFrame.
2157
+ * ``"numpy_nullable"``: returns with nullable-dtype-backed
2158
+ * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
2159
2159
2160
2160
.. versionadded:: 2.0
2161
2161
0 commit comments