pyarrow.null#

pyarrow.null()#

Create instance of null type.

Examples

Create an instance of a null type:

>>>importpyarrowaspa>>>pa.null()DataType(null)>>>print(pa.null())null

Create aField type with a null type and a name:

>>>pa.field('null_field',pa.null())pyarrow.Field<null_field: null>