(
self,
table_name: str,
index_col: str | list[str] | None = None,
coerce_float: bool = True,
parse_dates=None,
columns=None,
schema: str | None = None,
chunksize: int | None = None,
dtype_backend: DtypeBackend | Literal["numpy"] = "numpy",
)
| 1465 | pass |
| 1466 | |
| 1467 | def read_table( |
| 1468 | self, |
| 1469 | table_name: str, |
| 1470 | index_col: str | list[str] | None = None, |
| 1471 | coerce_float: bool = True, |
| 1472 | parse_dates=None, |
| 1473 | columns=None, |
| 1474 | schema: str | None = None, |
| 1475 | chunksize: int | None = None, |
| 1476 | dtype_backend: DtypeBackend | Literal["numpy"] = "numpy", |
| 1477 | ) -> DataFrame | Iterator[DataFrame]: |
| 1478 | raise NotImplementedError |
| 1479 | |
| 1480 | @abstractmethod |
| 1481 | def read_query( |
no outgoing calls
no test coverage detected