schemapb

package
v0.0.0-...-8540621 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 25, 2024 License: Apache-2.0 Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthSchema        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowSchema          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupSchema = fmt.Errorf("proto: unexpected end of group")
)

Functions

This section is empty.

Types

type BooleanColumn

type BooleanColumn struct {
	Data []bool `protobuf:"varint,1,rep,packed,name=data,proto3" json:"data,omitempty"`
}

func (*BooleanColumn) Descriptor

func (*BooleanColumn) Descriptor() ([]byte, []int)

func (*BooleanColumn) Equal

func (this *BooleanColumn) Equal(that interface{}) bool

func (*BooleanColumn) GetData

func (m *BooleanColumn) GetData() []bool

func (*BooleanColumn) GoString

func (this *BooleanColumn) GoString() string

func (*BooleanColumn) Marshal

func (m *BooleanColumn) Marshal() (dAtA []byte, err error)

func (*BooleanColumn) MarshalTo

func (m *BooleanColumn) MarshalTo(dAtA []byte) (int, error)

func (*BooleanColumn) MarshalToSizedBuffer

func (m *BooleanColumn) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*BooleanColumn) ProtoMessage

func (*BooleanColumn) ProtoMessage()

func (*BooleanColumn) Reset

func (m *BooleanColumn) Reset()

func (*BooleanColumn) Size

func (m *BooleanColumn) Size() (n int)

func (*BooleanColumn) String

func (this *BooleanColumn) String() string

func (*BooleanColumn) Unmarshal

func (m *BooleanColumn) Unmarshal(dAtA []byte) error

func (*BooleanColumn) XXX_DiscardUnknown

func (m *BooleanColumn) XXX_DiscardUnknown()

func (*BooleanColumn) XXX_Marshal

func (m *BooleanColumn) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BooleanColumn) XXX_Merge

func (m *BooleanColumn) XXX_Merge(src proto.Message)

func (*BooleanColumn) XXX_Size

func (m *BooleanColumn) XXX_Size() int

func (*BooleanColumn) XXX_Unmarshal

func (m *BooleanColumn) XXX_Unmarshal(b []byte) error

type Column

type Column struct {
	// Types that are valid to be assigned to ColData:
	//
	//	*Column_BooleanData
	//	*Column_Int64Data
	//	*Column_Uint128Data
	//	*Column_Time64NsData
	//	*Column_Float64Data
	//	*Column_StringData
	ColData isColumn_ColData `protobuf_oneof:"col_data"`
}

func (*Column) Descriptor

func (*Column) Descriptor() ([]byte, []int)

func (*Column) Equal

func (this *Column) Equal(that interface{}) bool

func (*Column) GetBooleanData

func (m *Column) GetBooleanData() *BooleanColumn

func (*Column) GetColData

func (m *Column) GetColData() isColumn_ColData

func (*Column) GetFloat64Data

func (m *Column) GetFloat64Data() *Float64Column

func (*Column) GetInt64Data

func (m *Column) GetInt64Data() *Int64Column

func (*Column) GetStringData

func (m *Column) GetStringData() *StringColumn

func (*Column) GetTime64NsData

func (m *Column) GetTime64NsData() *Time64NSColumn

func (*Column) GetUint128Data

func (m *Column) GetUint128Data() *UInt128Column

func (*Column) GoString

func (this *Column) GoString() string

func (*Column) Marshal

func (m *Column) Marshal() (dAtA []byte, err error)

func (*Column) MarshalTo

func (m *Column) MarshalTo(dAtA []byte) (int, error)

func (*Column) MarshalToSizedBuffer

func (m *Column) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Column) ProtoMessage

func (*Column) ProtoMessage()

func (*Column) Reset

func (m *Column) Reset()

func (*Column) Size

func (m *Column) Size() (n int)

func (*Column) String

func (this *Column) String() string

func (*Column) Unmarshal

func (m *Column) Unmarshal(dAtA []byte) error

func (*Column) XXX_DiscardUnknown

func (m *Column) XXX_DiscardUnknown()

func (*Column) XXX_Marshal

func (m *Column) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Column) XXX_Merge

func (m *Column) XXX_Merge(src proto.Message)

func (*Column) XXX_OneofWrappers

func (*Column) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*Column) XXX_Size

func (m *Column) XXX_Size() int

func (*Column) XXX_Unmarshal

func (m *Column) XXX_Unmarshal(b []byte) error

type Column_BooleanData

type Column_BooleanData struct {
	BooleanData *BooleanColumn `protobuf:"bytes,1,opt,name=boolean_data,json=booleanData,proto3,oneof" json:"boolean_data,omitempty"`
}

func (*Column_BooleanData) Equal

func (this *Column_BooleanData) Equal(that interface{}) bool

func (*Column_BooleanData) GoString

func (this *Column_BooleanData) GoString() string

func (*Column_BooleanData) MarshalTo

func (m *Column_BooleanData) MarshalTo(dAtA []byte) (int, error)

func (*Column_BooleanData) MarshalToSizedBuffer

func (m *Column_BooleanData) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Column_BooleanData) Size

func (m *Column_BooleanData) Size() (n int)

func (*Column_BooleanData) String

func (this *Column_BooleanData) String() string

type Column_Float64Data

type Column_Float64Data struct {
	Float64Data *Float64Column `protobuf:"bytes,5,opt,name=float64_data,json=float64Data,proto3,oneof" json:"float64_data,omitempty"`
}

func (*Column_Float64Data) Equal

func (this *Column_Float64Data) Equal(that interface{}) bool

func (*Column_Float64Data) GoString

func (this *Column_Float64Data) GoString() string

func (*Column_Float64Data) MarshalTo

func (m *Column_Float64Data) MarshalTo(dAtA []byte) (int, error)

func (*Column_Float64Data) MarshalToSizedBuffer

func (m *Column_Float64Data) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Column_Float64Data) Size

func (m *Column_Float64Data) Size() (n int)

func (*Column_Float64Data) String

func (this *Column_Float64Data) String() string

type Column_Int64Data

type Column_Int64Data struct {
	Int64Data *Int64Column `protobuf:"bytes,2,opt,name=int64_data,json=int64Data,proto3,oneof" json:"int64_data,omitempty"`
}

func (*Column_Int64Data) Equal

func (this *Column_Int64Data) Equal(that interface{}) bool

func (*Column_Int64Data) GoString

func (this *Column_Int64Data) GoString() string

func (*Column_Int64Data) MarshalTo

func (m *Column_Int64Data) MarshalTo(dAtA []byte) (int, error)

func (*Column_Int64Data) MarshalToSizedBuffer

func (m *Column_Int64Data) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Column_Int64Data) Size

func (m *Column_Int64Data) Size() (n int)

func (*Column_Int64Data) String

func (this *Column_Int64Data) String() string

type Column_StringData

type Column_StringData struct {
	StringData *StringColumn `protobuf:"bytes,6,opt,name=string_data,json=stringData,proto3,oneof" json:"string_data,omitempty"`
}

func (*Column_StringData) Equal

func (this *Column_StringData) Equal(that interface{}) bool

func (*Column_StringData) GoString

func (this *Column_StringData) GoString() string

func (*Column_StringData) MarshalTo

func (m *Column_StringData) MarshalTo(dAtA []byte) (int, error)

func (*Column_StringData) MarshalToSizedBuffer

func (m *Column_StringData) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Column_StringData) Size

func (m *Column_StringData) Size() (n int)

func (*Column_StringData) String

func (this *Column_StringData) String() string

type Column_Time64NsData

type Column_Time64NsData struct {
	Time64NsData *Time64NSColumn `protobuf:"bytes,4,opt,name=time64ns_data,json=time64nsData,proto3,oneof" json:"time64ns_data,omitempty"`
}

func (*Column_Time64NsData) Equal

func (this *Column_Time64NsData) Equal(that interface{}) bool

func (*Column_Time64NsData) GoString

func (this *Column_Time64NsData) GoString() string

func (*Column_Time64NsData) MarshalTo

func (m *Column_Time64NsData) MarshalTo(dAtA []byte) (int, error)

func (*Column_Time64NsData) MarshalToSizedBuffer

func (m *Column_Time64NsData) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Column_Time64NsData) Size

func (m *Column_Time64NsData) Size() (n int)

func (*Column_Time64NsData) String

func (this *Column_Time64NsData) String() string

type Column_Uint128Data

type Column_Uint128Data struct {
	Uint128Data *UInt128Column `protobuf:"bytes,3,opt,name=uint128_data,json=uint128Data,proto3,oneof" json:"uint128_data,omitempty"`
}

func (*Column_Uint128Data) Equal

func (this *Column_Uint128Data) Equal(that interface{}) bool

func (*Column_Uint128Data) GoString

func (this *Column_Uint128Data) GoString() string

func (*Column_Uint128Data) MarshalTo

func (m *Column_Uint128Data) MarshalTo(dAtA []byte) (int, error)

func (*Column_Uint128Data) MarshalToSizedBuffer

func (m *Column_Uint128Data) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Column_Uint128Data) Size

func (m *Column_Uint128Data) Size() (n int)

func (*Column_Uint128Data) String

func (this *Column_Uint128Data) String() string

type Float64Column

type Float64Column struct {
	Data []float64 `protobuf:"fixed64,1,rep,packed,name=data,proto3" json:"data,omitempty"`
}

func (*Float64Column) Descriptor

func (*Float64Column) Descriptor() ([]byte, []int)

func (*Float64Column) Equal

func (this *Float64Column) Equal(that interface{}) bool

func (*Float64Column) GetData

func (m *Float64Column) GetData() []float64

func (*Float64Column) GoString

func (this *Float64Column) GoString() string

func (*Float64Column) Marshal

func (m *Float64Column) Marshal() (dAtA []byte, err error)

func (*Float64Column) MarshalTo

func (m *Float64Column) MarshalTo(dAtA []byte) (int, error)

func (*Float64Column) MarshalToSizedBuffer

func (m *Float64Column) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Float64Column) ProtoMessage

func (*Float64Column) ProtoMessage()

func (*Float64Column) Reset

func (m *Float64Column) Reset()

func (*Float64Column) Size

func (m *Float64Column) Size() (n int)

func (*Float64Column) String

func (this *Float64Column) String() string

func (*Float64Column) Unmarshal

func (m *Float64Column) Unmarshal(dAtA []byte) error

func (*Float64Column) XXX_DiscardUnknown

func (m *Float64Column) XXX_DiscardUnknown()

func (*Float64Column) XXX_Marshal

func (m *Float64Column) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Float64Column) XXX_Merge

func (m *Float64Column) XXX_Merge(src proto.Message)

func (*Float64Column) XXX_Size

func (m *Float64Column) XXX_Size() int

func (*Float64Column) XXX_Unmarshal

func (m *Float64Column) XXX_Unmarshal(b []byte) error

type Int64Column

type Int64Column struct {
	Data []int64 `protobuf:"varint,1,rep,packed,name=data,proto3" json:"data,omitempty"`
}

func (*Int64Column) Descriptor

func (*Int64Column) Descriptor() ([]byte, []int)

func (*Int64Column) Equal

func (this *Int64Column) Equal(that interface{}) bool

func (*Int64Column) GetData

func (m *Int64Column) GetData() []int64

func (*Int64Column) GoString

func (this *Int64Column) GoString() string

func (*Int64Column) Marshal

func (m *Int64Column) Marshal() (dAtA []byte, err error)

func (*Int64Column) MarshalTo

func (m *Int64Column) MarshalTo(dAtA []byte) (int, error)

func (*Int64Column) MarshalToSizedBuffer

func (m *Int64Column) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Int64Column) ProtoMessage

func (*Int64Column) ProtoMessage()

func (*Int64Column) Reset

func (m *Int64Column) Reset()

func (*Int64Column) Size

func (m *Int64Column) Size() (n int)

func (*Int64Column) String

func (this *Int64Column) String() string

func (*Int64Column) Unmarshal

func (m *Int64Column) Unmarshal(dAtA []byte) error

func (*Int64Column) XXX_DiscardUnknown

func (m *Int64Column) XXX_DiscardUnknown()

func (*Int64Column) XXX_Marshal

func (m *Int64Column) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Int64Column) XXX_Merge

func (m *Int64Column) XXX_Merge(src proto.Message)

func (*Int64Column) XXX_Size

func (m *Int64Column) XXX_Size() int

func (*Int64Column) XXX_Unmarshal

func (m *Int64Column) XXX_Unmarshal(b []byte) error

type Relation

type Relation struct {
	Columns []*Relation_ColumnInfo `protobuf:"bytes,1,rep,name=columns,proto3" json:"columns,omitempty"`
	Desc    string                 `protobuf:"bytes,2,opt,name=desc,proto3" json:"desc,omitempty"`
}

func (*Relation) Descriptor

func (*Relation) Descriptor() ([]byte, []int)

func (*Relation) Equal

func (this *Relation) Equal(that interface{}) bool

func (*Relation) GetColumns

func (m *Relation) GetColumns() []*Relation_ColumnInfo

func (*Relation) GetDesc

func (m *Relation) GetDesc() string

func (*Relation) GoString

func (this *Relation) GoString() string

func (*Relation) Marshal

func (m *Relation) Marshal() (dAtA []byte, err error)

func (*Relation) MarshalTo

func (m *Relation) MarshalTo(dAtA []byte) (int, error)

func (*Relation) MarshalToSizedBuffer

func (m *Relation) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Relation) ProtoMessage

func (*Relation) ProtoMessage()

func (*Relation) Reset

func (m *Relation) Reset()

func (*Relation) Size

func (m *Relation) Size() (n int)

func (*Relation) String

func (this *Relation) String() string

func (*Relation) Unmarshal

func (m *Relation) Unmarshal(dAtA []byte) error

func (*Relation) XXX_DiscardUnknown

func (m *Relation) XXX_DiscardUnknown()

func (*Relation) XXX_Marshal

func (m *Relation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Relation) XXX_Merge

func (m *Relation) XXX_Merge(src proto.Message)

func (*Relation) XXX_Size

func (m *Relation) XXX_Size() int

func (*Relation) XXX_Unmarshal

func (m *Relation) XXX_Unmarshal(b []byte) error

type Relation_ColumnInfo

type Relation_ColumnInfo struct {
	ColumnName         string               `protobuf:"bytes,1,opt,name=column_name,json=columnName,proto3" json:"column_name,omitempty"`
	ColumnType         typespb.DataType     `protobuf:"varint,2,opt,name=column_type,json=columnType,proto3,enum=px.types.DataType" json:"column_type,omitempty"`
	ColumnDesc         string               `protobuf:"bytes,3,opt,name=column_desc,json=columnDesc,proto3" json:"column_desc,omitempty"`
	ColumnSemanticType typespb.SemanticType `` /* 145-byte string literal not displayed */
	PatternType        typespb.PatternType  `protobuf:"varint,5,opt,name=pattern_type,json=patternType,proto3,enum=px.types.PatternType" json:"pattern_type,omitempty"`
}

func (*Relation_ColumnInfo) Descriptor

func (*Relation_ColumnInfo) Descriptor() ([]byte, []int)

func (*Relation_ColumnInfo) Equal

func (this *Relation_ColumnInfo) Equal(that interface{}) bool

func (*Relation_ColumnInfo) GetColumnDesc

func (m *Relation_ColumnInfo) GetColumnDesc() string

func (*Relation_ColumnInfo) GetColumnName

func (m *Relation_ColumnInfo) GetColumnName() string

func (*Relation_ColumnInfo) GetColumnSemanticType

func (m *Relation_ColumnInfo) GetColumnSemanticType() typespb.SemanticType

func (*Relation_ColumnInfo) GetColumnType

func (m *Relation_ColumnInfo) GetColumnType() typespb.DataType

func (*Relation_ColumnInfo) GetPatternType

func (m *Relation_ColumnInfo) GetPatternType() typespb.PatternType

func (*Relation_ColumnInfo) GoString

func (this *Relation_ColumnInfo) GoString() string

func (*Relation_ColumnInfo) Marshal

func (m *Relation_ColumnInfo) Marshal() (dAtA []byte, err error)

func (*Relation_ColumnInfo) MarshalTo

func (m *Relation_ColumnInfo) MarshalTo(dAtA []byte) (int, error)

func (*Relation_ColumnInfo) MarshalToSizedBuffer

func (m *Relation_ColumnInfo) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Relation_ColumnInfo) ProtoMessage

func (*Relation_ColumnInfo) ProtoMessage()

func (*Relation_ColumnInfo) Reset

func (m *Relation_ColumnInfo) Reset()

func (*Relation_ColumnInfo) Size

func (m *Relation_ColumnInfo) Size() (n int)

func (*Relation_ColumnInfo) String

func (this *Relation_ColumnInfo) String() string

func (*Relation_ColumnInfo) Unmarshal

func (m *Relation_ColumnInfo) Unmarshal(dAtA []byte) error

func (*Relation_ColumnInfo) XXX_DiscardUnknown

func (m *Relation_ColumnInfo) XXX_DiscardUnknown()

func (*Relation_ColumnInfo) XXX_Marshal

func (m *Relation_ColumnInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Relation_ColumnInfo) XXX_Merge

func (m *Relation_ColumnInfo) XXX_Merge(src proto.Message)

func (*Relation_ColumnInfo) XXX_Size

func (m *Relation_ColumnInfo) XXX_Size() int

func (*Relation_ColumnInfo) XXX_Unmarshal

func (m *Relation_ColumnInfo) XXX_Unmarshal(b []byte) error

type RowBatchData

type RowBatchData struct {
	Cols    []*Column `protobuf:"bytes,1,rep,name=cols,proto3" json:"cols,omitempty"`
	NumRows int64     `protobuf:"varint,2,opt,name=num_rows,json=numRows,proto3" json:"num_rows,omitempty"`
	Eow     bool      `protobuf:"varint,3,opt,name=eow,proto3" json:"eow,omitempty"`
	Eos     bool      `protobuf:"varint,4,opt,name=eos,proto3" json:"eos,omitempty"`
}

func (*RowBatchData) Descriptor

func (*RowBatchData) Descriptor() ([]byte, []int)

func (*RowBatchData) Equal

func (this *RowBatchData) Equal(that interface{}) bool

func (*RowBatchData) GetCols

func (m *RowBatchData) GetCols() []*Column

func (*RowBatchData) GetEos

func (m *RowBatchData) GetEos() bool

func (*RowBatchData) GetEow

func (m *RowBatchData) GetEow() bool

func (*RowBatchData) GetNumRows

func (m *RowBatchData) GetNumRows() int64

func (*RowBatchData) GoString

func (this *RowBatchData) GoString() string

func (*RowBatchData) Marshal

func (m *RowBatchData) Marshal() (dAtA []byte, err error)

func (*RowBatchData) MarshalTo

func (m *RowBatchData) MarshalTo(dAtA []byte) (int, error)

func (*RowBatchData) MarshalToSizedBuffer

func (m *RowBatchData) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*RowBatchData) ProtoMessage

func (*RowBatchData) ProtoMessage()

func (*RowBatchData) Reset

func (m *RowBatchData) Reset()

func (*RowBatchData) Size

func (m *RowBatchData) Size() (n int)

func (*RowBatchData) String

func (this *RowBatchData) String() string

func (*RowBatchData) Unmarshal

func (m *RowBatchData) Unmarshal(dAtA []byte) error

func (*RowBatchData) XXX_DiscardUnknown

func (m *RowBatchData) XXX_DiscardUnknown()

func (*RowBatchData) XXX_Marshal

func (m *RowBatchData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RowBatchData) XXX_Merge

func (m *RowBatchData) XXX_Merge(src proto.Message)

func (*RowBatchData) XXX_Size

func (m *RowBatchData) XXX_Size() int

func (*RowBatchData) XXX_Unmarshal

func (m *RowBatchData) XXX_Unmarshal(b []byte) error

type Schema

type Schema struct {
	RelationMap map[string]*Relation `` /* 182-byte string literal not displayed */
}

func (*Schema) Descriptor

func (*Schema) Descriptor() ([]byte, []int)

func (*Schema) Equal

func (this *Schema) Equal(that interface{}) bool

func (*Schema) GetRelationMap

func (m *Schema) GetRelationMap() map[string]*Relation

func (*Schema) GoString

func (this *Schema) GoString() string

func (*Schema) Marshal

func (m *Schema) Marshal() (dAtA []byte, err error)

func (*Schema) MarshalTo

func (m *Schema) MarshalTo(dAtA []byte) (int, error)

func (*Schema) MarshalToSizedBuffer

func (m *Schema) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Schema) ProtoMessage

func (*Schema) ProtoMessage()

func (*Schema) Reset

func (m *Schema) Reset()

func (*Schema) Size

func (m *Schema) Size() (n int)

func (*Schema) String

func (this *Schema) String() string

func (*Schema) Unmarshal

func (m *Schema) Unmarshal(dAtA []byte) error

func (*Schema) XXX_DiscardUnknown

func (m *Schema) XXX_DiscardUnknown()

func (*Schema) XXX_Marshal

func (m *Schema) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Schema) XXX_Merge

func (m *Schema) XXX_Merge(src proto.Message)

func (*Schema) XXX_Size

func (m *Schema) XXX_Size() int

func (*Schema) XXX_Unmarshal

func (m *Schema) XXX_Unmarshal(b []byte) error

type StringColumn

type StringColumn struct {
	Data []px_dev_pixie_src_table_store_schemapb_types.StringData `` /* 127-byte string literal not displayed */
}

func (*StringColumn) Descriptor

func (*StringColumn) Descriptor() ([]byte, []int)

func (*StringColumn) Equal

func (this *StringColumn) Equal(that interface{}) bool

func (*StringColumn) GoString

func (this *StringColumn) GoString() string

func (*StringColumn) Marshal

func (m *StringColumn) Marshal() (dAtA []byte, err error)

func (*StringColumn) MarshalTo

func (m *StringColumn) MarshalTo(dAtA []byte) (int, error)

func (*StringColumn) MarshalToSizedBuffer

func (m *StringColumn) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*StringColumn) ProtoMessage

func (*StringColumn) ProtoMessage()

func (*StringColumn) Reset

func (m *StringColumn) Reset()

func (*StringColumn) Size

func (m *StringColumn) Size() (n int)

func (*StringColumn) String

func (this *StringColumn) String() string

func (*StringColumn) Unmarshal

func (m *StringColumn) Unmarshal(dAtA []byte) error

func (*StringColumn) XXX_DiscardUnknown

func (m *StringColumn) XXX_DiscardUnknown()

func (*StringColumn) XXX_Marshal

func (m *StringColumn) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StringColumn) XXX_Merge

func (m *StringColumn) XXX_Merge(src proto.Message)

func (*StringColumn) XXX_Size

func (m *StringColumn) XXX_Size() int

func (*StringColumn) XXX_Unmarshal

func (m *StringColumn) XXX_Unmarshal(b []byte) error

type Table

type Table struct {
	Relation   *Relation       `protobuf:"bytes,4,opt,name=relation,proto3" json:"relation,omitempty"`
	RowBatches []*RowBatchData `protobuf:"bytes,5,rep,name=row_batches,json=rowBatches,proto3" json:"row_batches,omitempty"`
	Name       string          `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
}

func (*Table) Descriptor

func (*Table) Descriptor() ([]byte, []int)

func (*Table) Equal

func (this *Table) Equal(that interface{}) bool

func (*Table) GetName

func (m *Table) GetName() string

func (*Table) GetRelation

func (m *Table) GetRelation() *Relation

func (*Table) GetRowBatches

func (m *Table) GetRowBatches() []*RowBatchData

func (*Table) GoString

func (this *Table) GoString() string

func (*Table) Marshal

func (m *Table) Marshal() (dAtA []byte, err error)

func (*Table) MarshalTo

func (m *Table) MarshalTo(dAtA []byte) (int, error)

func (*Table) MarshalToSizedBuffer

func (m *Table) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Table) ProtoMessage

func (*Table) ProtoMessage()

func (*Table) Reset

func (m *Table) Reset()

func (*Table) Size

func (m *Table) Size() (n int)

func (*Table) String

func (this *Table) String() string

func (*Table) Unmarshal

func (m *Table) Unmarshal(dAtA []byte) error

func (*Table) XXX_DiscardUnknown

func (m *Table) XXX_DiscardUnknown()

func (*Table) XXX_Marshal

func (m *Table) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Table) XXX_Merge

func (m *Table) XXX_Merge(src proto.Message)

func (*Table) XXX_Size

func (m *Table) XXX_Size() int

func (*Table) XXX_Unmarshal

func (m *Table) XXX_Unmarshal(b []byte) error

type Time64NSColumn

type Time64NSColumn struct {
	Data []int64 `protobuf:"varint,1,rep,packed,name=data,proto3" json:"data,omitempty"`
}

func (*Time64NSColumn) Descriptor

func (*Time64NSColumn) Descriptor() ([]byte, []int)

func (*Time64NSColumn) Equal

func (this *Time64NSColumn) Equal(that interface{}) bool

func (*Time64NSColumn) GetData

func (m *Time64NSColumn) GetData() []int64

func (*Time64NSColumn) GoString

func (this *Time64NSColumn) GoString() string

func (*Time64NSColumn) Marshal

func (m *Time64NSColumn) Marshal() (dAtA []byte, err error)

func (*Time64NSColumn) MarshalTo

func (m *Time64NSColumn) MarshalTo(dAtA []byte) (int, error)

func (*Time64NSColumn) MarshalToSizedBuffer

func (m *Time64NSColumn) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*Time64NSColumn) ProtoMessage

func (*Time64NSColumn) ProtoMessage()

func (*Time64NSColumn) Reset

func (m *Time64NSColumn) Reset()

func (*Time64NSColumn) Size

func (m *Time64NSColumn) Size() (n int)

func (*Time64NSColumn) String

func (this *Time64NSColumn) String() string

func (*Time64NSColumn) Unmarshal

func (m *Time64NSColumn) Unmarshal(dAtA []byte) error

func (*Time64NSColumn) XXX_DiscardUnknown

func (m *Time64NSColumn) XXX_DiscardUnknown()

func (*Time64NSColumn) XXX_Marshal

func (m *Time64NSColumn) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Time64NSColumn) XXX_Merge

func (m *Time64NSColumn) XXX_Merge(src proto.Message)

func (*Time64NSColumn) XXX_Size

func (m *Time64NSColumn) XXX_Size() int

func (*Time64NSColumn) XXX_Unmarshal

func (m *Time64NSColumn) XXX_Unmarshal(b []byte) error

type UInt128Column

type UInt128Column struct {
	Data []*typespb.UInt128 `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"`
}

func (*UInt128Column) Descriptor

func (*UInt128Column) Descriptor() ([]byte, []int)

func (*UInt128Column) Equal

func (this *UInt128Column) Equal(that interface{}) bool

func (*UInt128Column) GetData

func (m *UInt128Column) GetData() []*typespb.UInt128

func (*UInt128Column) GoString

func (this *UInt128Column) GoString() string

func (*UInt128Column) Marshal

func (m *UInt128Column) Marshal() (dAtA []byte, err error)

func (*UInt128Column) MarshalTo

func (m *UInt128Column) MarshalTo(dAtA []byte) (int, error)

func (*UInt128Column) MarshalToSizedBuffer

func (m *UInt128Column) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UInt128Column) ProtoMessage

func (*UInt128Column) ProtoMessage()

func (*UInt128Column) Reset

func (m *UInt128Column) Reset()

func (*UInt128Column) Size

func (m *UInt128Column) Size() (n int)

func (*UInt128Column) String

func (this *UInt128Column) String() string

func (*UInt128Column) Unmarshal

func (m *UInt128Column) Unmarshal(dAtA []byte) error

func (*UInt128Column) XXX_DiscardUnknown

func (m *UInt128Column) XXX_DiscardUnknown()

func (*UInt128Column) XXX_Marshal

func (m *UInt128Column) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UInt128Column) XXX_Merge

func (m *UInt128Column) XXX_Merge(src proto.Message)

func (*UInt128Column) XXX_Size

func (m *UInt128Column) XXX_Size() int

func (*UInt128Column) XXX_Unmarshal

func (m *UInt128Column) XXX_Unmarshal(b []byte) error

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL