Skip to main content

field_types

superduper.backends.ibis.field_types

Source code

dtype​

dtype(x)
ParameterDescription
xThe data type e.g int, str, etc.

Ibis dtype to represent basic data types in ibis.

FieldType​

FieldType(self,
db: dataclasses.InitVar[typing.Optional[ForwardRef('Datalayer')]] = None,
uuid: str = None,
*,
identifier: Union[str,
ibis.expr.datatypes.core.DataType]) -> None
ParameterDescription
identifierThe name of the data type.
dbDatalayer instance.
uuidUUID of the leaf.

Field type to represent the type of a field in a table.

This is a wrapper around ibis.expr.datatypes.DataType to make it serializable.