File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -195,6 +195,17 @@ def dataset(
195
195
exclude_invalid_files : bool | None = None ,
196
196
ignore_prefixes : list [str ] | None = None ,
197
197
) -> InMemoryDataset : ...
198
+ @overload
199
+ def dataset (
200
+ source : RecordBatch | Table ,
201
+ schema : Schema | None = None ,
202
+ format : FileFormat | _DatasetFormat | None = None ,
203
+ filesystem : SupportedFileSystem | str | None = None ,
204
+ partitioning : Partitioning | PartitioningFactory | str | list [str ] | None = None ,
205
+ partition_base_dir : str | None = None ,
206
+ exclude_invalid_files : bool | None = None ,
207
+ ignore_prefixes : list [str ] | None = None ,
208
+ ) -> InMemoryDataset : ...
198
209
def write_dataset (
199
210
data : Dataset | Table | RecordBatch | RecordBatchReader | list [Table ] | Iterable [RecordBatch ],
200
211
base_dir : StrPath ,
You can’t perform that action at this time.
0 commit comments