ExArrow.Field (ex_arrow v0.6.0)

View Source

Arrow field metadata (name, type, and nullability).

Elixir-friendly struct returned from schema/record-batch metadata. A field corresponds to one column in a record batch. The nullable flag indicates whether the column can contain null values; it defaults to true (Arrow's default for fields without an explicit nullability marker).

Summary

Types

t()

@type t() :: %ExArrow.Field{name: String.t(), nullable: boolean(), type: term()}