Documentation ¶
Index ¶
- Variables
- func RegisterAllExtensions() error
- func UnregisterAllExtensions() error
- type InetArray
- type InetBuilder
- func (b *InetBuilder) Append(v *net.IPNet)
- func (b *InetBuilder) AppendValueFromString(s string) error
- func (b *InetBuilder) AppendValues(v []*net.IPNet, valid []bool)
- func (b *InetBuilder) NewInetArray() *InetArray
- func (b *InetBuilder) Unmarshal(dec *json.Decoder) error
- func (b *InetBuilder) UnmarshalJSON(data []byte) error
- func (b *InetBuilder) UnmarshalOne(dec *json.Decoder) error
- func (b *InetBuilder) UnsafeAppend(v *net.IPNet)
- type InetType
- func (*InetType) ArrayType() reflect.Type
- func (*InetType) Deserialize(storageType arrow.DataType, data string) (arrow.ExtensionType, error)
- func (u *InetType) ExtensionEquals(other arrow.ExtensionType) bool
- func (*InetType) ExtensionName() string
- func (*InetType) NewBuilder(bldr *array.ExtensionBuilder) array.Builder
- func (*InetType) Serialize() string
- func (*InetType) String() string
- type JSONArray
- type JSONBuilder
- func (b *JSONBuilder) Append(v any)
- func (b *JSONBuilder) AppendBytes(v []byte)
- func (b *JSONBuilder) AppendValueFromString(s string) error
- func (b *JSONBuilder) AppendValues(v []any, valid []bool)
- func (b *JSONBuilder) NewJSONArray() *JSONArray
- func (b *JSONBuilder) Unmarshal(dec *json.Decoder) error
- func (b *JSONBuilder) UnmarshalJSON(data []byte) error
- func (b *JSONBuilder) UnmarshalOne(dec *json.Decoder) error
- func (b *JSONBuilder) UnsafeAppend(v any)
- type JSONType
- func (*JSONType) ArrayType() reflect.Type
- func (*JSONType) Deserialize(storageType arrow.DataType, data string) (arrow.ExtensionType, error)
- func (e *JSONType) ExtensionEquals(other arrow.ExtensionType) bool
- func (*JSONType) ExtensionName() string
- func (e *JSONType) MarshalJSON() ([]byte, error)
- func (*JSONType) NewBuilder(bldr *array.ExtensionBuilder) array.Builder
- func (*JSONType) Serialize() string
- func (*JSONType) String() string
- type MACArray
- type MACBuilder
- func (b *MACBuilder) Append(v net.HardwareAddr)
- func (b *MACBuilder) AppendValueFromString(s string) error
- func (b *MACBuilder) AppendValues(v []net.HardwareAddr, valid []bool)
- func (b *MACBuilder) NewMACArray() *MACArray
- func (b *MACBuilder) Unmarshal(dec *json.Decoder) error
- func (b *MACBuilder) UnmarshalJSON(data []byte) error
- func (b *MACBuilder) UnmarshalOne(dec *json.Decoder) error
- func (b *MACBuilder) UnsafeAppend(v net.HardwareAddr)
- type MACType
- func (*MACType) ArrayType() reflect.Type
- func (*MACType) Deserialize(storageType arrow.DataType, data string) (arrow.ExtensionType, error)
- func (u *MACType) ExtensionEquals(other arrow.ExtensionType) bool
- func (*MACType) ExtensionName() string
- func (*MACType) NewBuilder(bldr *array.ExtensionBuilder) array.Builder
- func (*MACType) Serialize() string
- func (*MACType) String() string
- type UUIDArray
- type UUIDBuilder
- func (b *UUIDBuilder) Append(v uuid.UUID)
- func (b *UUIDBuilder) AppendValueFromString(s string) error
- func (b *UUIDBuilder) AppendValues(v []uuid.UUID, valid []bool)
- func (b *UUIDBuilder) NewUUIDArray() *UUIDArray
- func (b *UUIDBuilder) Unmarshal(dec *json.Decoder) error
- func (b *UUIDBuilder) UnmarshalJSON(data []byte) error
- func (b *UUIDBuilder) UnmarshalOne(dec *json.Decoder) error
- func (b *UUIDBuilder) UnsafeAppend(v uuid.UUID)
- type UUIDType
- func (*UUIDType) ArrayType() reflect.Type
- func (*UUIDType) Deserialize(storageType arrow.DataType, data string) (arrow.ExtensionType, error)
- func (e *UUIDType) ExtensionEquals(other arrow.ExtensionType) bool
- func (*UUIDType) ExtensionName() string
- func (e *UUIDType) MarshalJSON() ([]byte, error)
- func (*UUIDType) NewBuilder(bldr *array.ExtensionBuilder) array.Builder
- func (*UUIDType) Serialize() string
- func (*UUIDType) String() string
Constants ¶
This section is empty.
Variables ¶
var ExtensionTypes = struct { UUID arrow.ExtensionType Inet arrow.ExtensionType MAC arrow.ExtensionType JSON arrow.ExtensionType }{ UUID: NewUUIDType(), Inet: NewInetType(), MAC: NewMACType(), JSON: NewJSONType(), }
var UUID = NewUUIDType()
Functions ¶
func RegisterAllExtensions ¶
func RegisterAllExtensions() error
func UnregisterAllExtensions ¶
func UnregisterAllExtensions() error
Types ¶
type InetArray ¶
type InetArray struct {
array.ExtensionArrayBase
}
InetArray is a simple array which is a FixedSizeBinary(16)
func (*InetArray) GetOneForMarshal ¶
func (*InetArray) MarshalJSON ¶
type InetBuilder ¶
type InetBuilder struct {
*array.ExtensionBuilder
}
func NewInetBuilder ¶
func NewInetBuilder(builder *array.ExtensionBuilder) *InetBuilder
func (*InetBuilder) Append ¶
func (b *InetBuilder) Append(v *net.IPNet)
func (*InetBuilder) AppendValueFromString ¶
func (b *InetBuilder) AppendValueFromString(s string) error
func (*InetBuilder) AppendValues ¶
func (b *InetBuilder) AppendValues(v []*net.IPNet, valid []bool)
func (*InetBuilder) NewInetArray ¶
func (b *InetBuilder) NewInetArray() *InetArray
func (*InetBuilder) Unmarshal ¶
func (b *InetBuilder) Unmarshal(dec *json.Decoder) error
func (*InetBuilder) UnmarshalJSON ¶
func (b *InetBuilder) UnmarshalJSON(data []byte) error
func (*InetBuilder) UnmarshalOne ¶
func (b *InetBuilder) UnmarshalOne(dec *json.Decoder) error
func (*InetBuilder) UnsafeAppend ¶
func (b *InetBuilder) UnsafeAppend(v *net.IPNet)
type InetType ¶
type InetType struct {
arrow.ExtensionBase
}
InetType is a simple extension type that represents a BinaryType to be used for representing IP Addresses and CIDRs
func NewInetType ¶
func NewInetType() *InetType
NewInetType is a convenience function to create an instance of InetType with the correct storage type
func (*InetType) Deserialize ¶
Deserialize expects storageType to be BinaryType and the data to be "inet-serialized" in order to correctly create a InetType for testing deserialize.
func (*InetType) ExtensionEquals ¶
func (u *InetType) ExtensionEquals(other arrow.ExtensionType) bool
ExtensionEquals returns true if both extensions have the same name
func (*InetType) ExtensionName ¶
func (*InetType) NewBuilder ¶
func (*InetType) NewBuilder(bldr *array.ExtensionBuilder) array.Builder
type JSONArray ¶
type JSONArray struct {
array.ExtensionArrayBase
}
JSONArray is a simple array which is a Binary
func (*JSONArray) GetOneForMarshal ¶
func (*JSONArray) MarshalJSON ¶
type JSONBuilder ¶
type JSONBuilder struct {
*array.ExtensionBuilder
}
func NewJSONBuilder ¶
func NewJSONBuilder(builder *array.ExtensionBuilder) *JSONBuilder
func (*JSONBuilder) Append ¶
func (b *JSONBuilder) Append(v any)
func (*JSONBuilder) AppendBytes ¶
func (b *JSONBuilder) AppendBytes(v []byte)
func (*JSONBuilder) AppendValueFromString ¶
func (b *JSONBuilder) AppendValueFromString(s string) error
func (*JSONBuilder) AppendValues ¶
func (b *JSONBuilder) AppendValues(v []any, valid []bool)
func (*JSONBuilder) NewJSONArray ¶
func (b *JSONBuilder) NewJSONArray() *JSONArray
func (*JSONBuilder) Unmarshal ¶
func (b *JSONBuilder) Unmarshal(dec *json.Decoder) error
func (*JSONBuilder) UnmarshalJSON ¶
func (b *JSONBuilder) UnmarshalJSON(data []byte) error
func (*JSONBuilder) UnmarshalOne ¶
func (b *JSONBuilder) UnmarshalOne(dec *json.Decoder) error
func (*JSONBuilder) UnsafeAppend ¶
func (b *JSONBuilder) UnsafeAppend(v any)
type JSONType ¶
type JSONType struct {
arrow.ExtensionBase
}
JSONType is a simple extension type that represents a BinaryType to be used for representing JSONs
func NewJSONType ¶
func NewJSONType() *JSONType
NewJSONType is a convenience function to create an instance of JSONType with the correct storage type
func (*JSONType) Deserialize ¶
Deserialize expects storageType to be BinaryBuilder and the data to be "json-serialized" in order to correctly create a JSONType for testing deserialize.
func (*JSONType) ExtensionEquals ¶
func (e *JSONType) ExtensionEquals(other arrow.ExtensionType) bool
ExtensionEquals returns true if both extensions have the same name
func (*JSONType) ExtensionName ¶
func (*JSONType) MarshalJSON ¶
func (*JSONType) NewBuilder ¶
func (*JSONType) NewBuilder(bldr *array.ExtensionBuilder) array.Builder
type MACArray ¶
type MACArray struct {
array.ExtensionArrayBase
}
MACArray is a simple array which is a wrapper around a BinaryArray
func (*MACArray) GetOneForMarshal ¶
func (*MACArray) MarshalJSON ¶
type MACBuilder ¶
type MACBuilder struct {
*array.ExtensionBuilder
}
func NewMACBuilder ¶
func NewMACBuilder(builder *array.ExtensionBuilder) *MACBuilder
func (*MACBuilder) Append ¶
func (b *MACBuilder) Append(v net.HardwareAddr)
func (*MACBuilder) AppendValueFromString ¶
func (b *MACBuilder) AppendValueFromString(s string) error
func (*MACBuilder) AppendValues ¶
func (b *MACBuilder) AppendValues(v []net.HardwareAddr, valid []bool)
func (*MACBuilder) NewMACArray ¶
func (b *MACBuilder) NewMACArray() *MACArray
func (*MACBuilder) Unmarshal ¶
func (b *MACBuilder) Unmarshal(dec *json.Decoder) error
func (*MACBuilder) UnmarshalJSON ¶
func (b *MACBuilder) UnmarshalJSON(data []byte) error
func (*MACBuilder) UnmarshalOne ¶
func (b *MACBuilder) UnmarshalOne(dec *json.Decoder) error
func (*MACBuilder) UnsafeAppend ¶
func (b *MACBuilder) UnsafeAppend(v net.HardwareAddr)
type MACType ¶
type MACType struct {
arrow.ExtensionBase
}
MACType is a simple extension type that represents a BinaryType to be used for representing MAC addresses.
func NewMACType ¶
func NewMACType() *MACType
NewMACType is a convenience function to create an instance of MACType with the correct storage type
func (*MACType) Deserialize ¶
Deserialize expects storageType to be FixedSizeBinaryType{ByteWidth: 16} and the data to be "MAC-serialized" in order to correctly create a MACType for testing deserialize.
func (*MACType) ExtensionEquals ¶
func (u *MACType) ExtensionEquals(other arrow.ExtensionType) bool
ExtensionEquals returns true if both extensions have the same name
func (*MACType) ExtensionName ¶
func (*MACType) NewBuilder ¶
func (*MACType) NewBuilder(bldr *array.ExtensionBuilder) array.Builder
type UUIDArray ¶
type UUIDArray struct {
array.ExtensionArrayBase
}
UUIDArray is a simple array which is a FixedSizeBinary(16)
func (*UUIDArray) GetOneForMarshal ¶
func (*UUIDArray) MarshalJSON ¶
type UUIDBuilder ¶
type UUIDBuilder struct {
*array.ExtensionBuilder
}
func NewUUIDBuilder ¶
func NewUUIDBuilder(builder *array.ExtensionBuilder) *UUIDBuilder
func (*UUIDBuilder) Append ¶
func (b *UUIDBuilder) Append(v uuid.UUID)
func (*UUIDBuilder) AppendValueFromString ¶
func (b *UUIDBuilder) AppendValueFromString(s string) error
func (*UUIDBuilder) AppendValues ¶
func (b *UUIDBuilder) AppendValues(v []uuid.UUID, valid []bool)
func (*UUIDBuilder) NewUUIDArray ¶
func (b *UUIDBuilder) NewUUIDArray() *UUIDArray
func (*UUIDBuilder) Unmarshal ¶
func (b *UUIDBuilder) Unmarshal(dec *json.Decoder) error
func (*UUIDBuilder) UnmarshalJSON ¶
func (b *UUIDBuilder) UnmarshalJSON(data []byte) error
func (*UUIDBuilder) UnmarshalOne ¶
func (b *UUIDBuilder) UnmarshalOne(dec *json.Decoder) error
func (*UUIDBuilder) UnsafeAppend ¶
func (b *UUIDBuilder) UnsafeAppend(v uuid.UUID)
type UUIDType ¶
type UUIDType struct {
arrow.ExtensionBase
}
UUIDType is a simple extension type that represents a FixedSizeBinary(16) to be used for representing UUIDs
func NewUUIDType ¶
func NewUUIDType() *UUIDType
NewUUIDType is a convenience function to create an instance of UUIDType with the correct storage type
func (*UUIDType) Deserialize ¶
Deserialize expects storageType to be FixedSizeBinaryType{ByteWidth: 16} and the data to be "uuid-serialized" in order to correctly create a UUIDType for testing deserialize.
func (*UUIDType) ExtensionEquals ¶
func (e *UUIDType) ExtensionEquals(other arrow.ExtensionType) bool
ExtensionEquals returns true if both extensions have the same name
func (*UUIDType) ExtensionName ¶
func (*UUIDType) MarshalJSON ¶
func (*UUIDType) NewBuilder ¶
func (*UUIDType) NewBuilder(bldr *array.ExtensionBuilder) array.Builder