MCPcopy Create free account
hub / github.com/apache/arrow / _in_memory_dataset

Function _in_memory_dataset

python/pyarrow/dataset.py:485–489  ·  view source on GitHub ↗
(source, schema=None, **kwargs)

Source from the content-addressed store, hash-verified

483
484
485def _in_memory_dataset(source, schema=None, **kwargs):
486 if any(v is not None for v in kwargs.values()):
487 raise ValueError(
488 "For in-memory datasets, you cannot pass any additional arguments")
489 return InMemoryDataset(source, schema)
490
491
492def _union_dataset(children, schema=None, **kwargs):

Callers 1

datasetFunction · 0.85

Calls 2

InMemoryDatasetClass · 0.70
valuesMethod · 0.45

Tested by

no test coverage detected