pyarrow.null — Apache Arrow v20.0.0 (original) (raw)
pyarrow.null()#
Create instance of null type.
Examples
Create an instance of a null type:
import pyarrow as pa pa.null() DataType(null) print(pa.null()) null
Create a Field
type with a null type and a name:
pa.field('null_field', pa.null()) pyarrow.Field<null_field: null>