field_types
superduper.backends.ibis.field_types
dtype
​
dtype(x)
Parameter | Description |
---|---|
x | The 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
Parameter | Description |
---|---|
identifier | The name of the data type. |
db | Datalayer instance. |
uuid | UUID 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.