data

package
v0.16.1 Latest Latest
Warning

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

Go to latest
Published: Sep 22, 2022 License: Apache-2.0 Imports: 6 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

View Source
var GoUnusedProtection__ int
View Source
var TColumnData_BinaryVals_DEFAULT [][]byte
View Source
var TColumnData_BoolVals_DEFAULT []bool
View Source
var TColumnData_ByteVals_DEFAULT []int8
View Source
var TColumnData_DoubleVals_DEFAULT []float64
View Source
var TColumnData_IntVals_DEFAULT []int32
View Source
var TColumnData_LongVals_DEFAULT []int64
View Source
var TColumnData_ShortVals_DEFAULT []int16
View Source
var TColumnData_StringVals_DEFAULT []string
View Source
var TColumnValue_BinaryVal_DEFAULT []byte
View Source
var TColumnValue_BoolVal_DEFAULT bool
View Source
var TColumnValue_ByteVal_DEFAULT int8
View Source
var TColumnValue_DateVal_DEFAULT int32
View Source
var TColumnValue_DecimalVal_DEFAULT []byte
View Source
var TColumnValue_DoubleVal_DEFAULT float64
View Source
var TColumnValue_IntVal_DEFAULT int32
View Source
var TColumnValue_LongVal_DEFAULT int64
View Source
var TColumnValue_ShortVal_DEFAULT int16
View Source
var TColumnValue_StringVal_DEFAULT string
View Source
var TColumnValue_TimestampVal_DEFAULT []byte

Functions

This section is empty.

Types

type TColumnData

type TColumnData struct {
	IsNull     []bool    `thrift:"is_null,1,required" db:"is_null" json:"is_null"`
	BoolVals   []bool    `thrift:"bool_vals,2" db:"bool_vals" json:"bool_vals,omitempty"`
	ByteVals   []int8    `thrift:"byte_vals,3" db:"byte_vals" json:"byte_vals,omitempty"`
	ShortVals  []int16   `thrift:"short_vals,4" db:"short_vals" json:"short_vals,omitempty"`
	IntVals    []int32   `thrift:"int_vals,5" db:"int_vals" json:"int_vals,omitempty"`
	LongVals   []int64   `thrift:"long_vals,6" db:"long_vals" json:"long_vals,omitempty"`
	DoubleVals []float64 `thrift:"double_vals,7" db:"double_vals" json:"double_vals,omitempty"`
	StringVals []string  `thrift:"string_vals,8" db:"string_vals" json:"string_vals,omitempty"`
	BinaryVals [][]byte  `thrift:"binary_vals,9" db:"binary_vals" json:"binary_vals,omitempty"`
}

Attributes:

  • IsNull
  • BoolVals
  • ByteVals
  • ShortVals
  • IntVals
  • LongVals
  • DoubleVals
  • StringVals
  • BinaryVals

func NewTColumnData

func NewTColumnData() *TColumnData

func (*TColumnData) Equals

func (p *TColumnData) Equals(other *TColumnData) bool

func (*TColumnData) GetBinaryVals

func (p *TColumnData) GetBinaryVals() [][]byte

func (*TColumnData) GetBoolVals

func (p *TColumnData) GetBoolVals() []bool

func (*TColumnData) GetByteVals

func (p *TColumnData) GetByteVals() []int8

func (*TColumnData) GetDoubleVals

func (p *TColumnData) GetDoubleVals() []float64

func (*TColumnData) GetIntVals

func (p *TColumnData) GetIntVals() []int32

func (*TColumnData) GetIsNull

func (p *TColumnData) GetIsNull() []bool

func (*TColumnData) GetLongVals

func (p *TColumnData) GetLongVals() []int64

func (*TColumnData) GetShortVals

func (p *TColumnData) GetShortVals() []int16

func (*TColumnData) GetStringVals

func (p *TColumnData) GetStringVals() []string

func (*TColumnData) IsSetBinaryVals

func (p *TColumnData) IsSetBinaryVals() bool

func (*TColumnData) IsSetBoolVals

func (p *TColumnData) IsSetBoolVals() bool

func (*TColumnData) IsSetByteVals

func (p *TColumnData) IsSetByteVals() bool

func (*TColumnData) IsSetDoubleVals

func (p *TColumnData) IsSetDoubleVals() bool

func (*TColumnData) IsSetIntVals

func (p *TColumnData) IsSetIntVals() bool

func (*TColumnData) IsSetLongVals

func (p *TColumnData) IsSetLongVals() bool

func (*TColumnData) IsSetShortVals

func (p *TColumnData) IsSetShortVals() bool

func (*TColumnData) IsSetStringVals

func (p *TColumnData) IsSetStringVals() bool

func (*TColumnData) Read

func (p *TColumnData) Read(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnData) ReadField1

func (p *TColumnData) ReadField1(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnData) ReadField2

func (p *TColumnData) ReadField2(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnData) ReadField3

func (p *TColumnData) ReadField3(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnData) ReadField4

func (p *TColumnData) ReadField4(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnData) ReadField5

func (p *TColumnData) ReadField5(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnData) ReadField6

func (p *TColumnData) ReadField6(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnData) ReadField7

func (p *TColumnData) ReadField7(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnData) ReadField8

func (p *TColumnData) ReadField8(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnData) ReadField9

func (p *TColumnData) ReadField9(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnData) String

func (p *TColumnData) String() string

func (*TColumnData) Write

func (p *TColumnData) Write(ctx context.Context, oprot thrift.TProtocol) error

type TColumnValue

type TColumnValue struct {
	BoolVal      *bool    `thrift:"bool_val,1" db:"bool_val" json:"bool_val,omitempty"`
	IntVal       *int32   `thrift:"int_val,2" db:"int_val" json:"int_val,omitempty"`
	LongVal      *int64   `thrift:"long_val,3" db:"long_val" json:"long_val,omitempty"`
	DoubleVal    *float64 `thrift:"double_val,4" db:"double_val" json:"double_val,omitempty"`
	StringVal    *string  `thrift:"string_val,5" db:"string_val" json:"string_val,omitempty"`
	ByteVal      *int8    `thrift:"byte_val,6" db:"byte_val" json:"byte_val,omitempty"`
	ShortVal     *int16   `thrift:"short_val,7" db:"short_val" json:"short_val,omitempty"`
	BinaryVal    []byte   `thrift:"binary_val,8" db:"binary_val" json:"binary_val,omitempty"`
	TimestampVal []byte   `thrift:"timestamp_val,9" db:"timestamp_val" json:"timestamp_val,omitempty"`
	DecimalVal   []byte   `thrift:"decimal_val,10" db:"decimal_val" json:"decimal_val,omitempty"`
	DateVal      *int32   `thrift:"date_val,11" db:"date_val" json:"date_val,omitempty"`
}

Attributes:

  • BoolVal
  • ByteVal
  • ShortVal
  • IntVal
  • LongVal
  • DoubleVal
  • StringVal
  • BinaryVal
  • TimestampVal
  • DecimalVal
  • DateVal

func NewTColumnValue

func NewTColumnValue() *TColumnValue

func (*TColumnValue) Equals

func (p *TColumnValue) Equals(other *TColumnValue) bool

func (*TColumnValue) GetBinaryVal

func (p *TColumnValue) GetBinaryVal() []byte

func (*TColumnValue) GetBoolVal

func (p *TColumnValue) GetBoolVal() bool

func (*TColumnValue) GetByteVal

func (p *TColumnValue) GetByteVal() int8

func (*TColumnValue) GetDateVal

func (p *TColumnValue) GetDateVal() int32

func (*TColumnValue) GetDecimalVal

func (p *TColumnValue) GetDecimalVal() []byte

func (*TColumnValue) GetDoubleVal

func (p *TColumnValue) GetDoubleVal() float64

func (*TColumnValue) GetIntVal

func (p *TColumnValue) GetIntVal() int32

func (*TColumnValue) GetLongVal

func (p *TColumnValue) GetLongVal() int64

func (*TColumnValue) GetShortVal

func (p *TColumnValue) GetShortVal() int16

func (*TColumnValue) GetStringVal

func (p *TColumnValue) GetStringVal() string

func (*TColumnValue) GetTimestampVal

func (p *TColumnValue) GetTimestampVal() []byte

func (*TColumnValue) IsSetBinaryVal

func (p *TColumnValue) IsSetBinaryVal() bool

func (*TColumnValue) IsSetBoolVal

func (p *TColumnValue) IsSetBoolVal() bool

func (*TColumnValue) IsSetByteVal

func (p *TColumnValue) IsSetByteVal() bool

func (*TColumnValue) IsSetDateVal

func (p *TColumnValue) IsSetDateVal() bool

func (*TColumnValue) IsSetDecimalVal

func (p *TColumnValue) IsSetDecimalVal() bool

func (*TColumnValue) IsSetDoubleVal

func (p *TColumnValue) IsSetDoubleVal() bool

func (*TColumnValue) IsSetIntVal

func (p *TColumnValue) IsSetIntVal() bool

func (*TColumnValue) IsSetLongVal

func (p *TColumnValue) IsSetLongVal() bool

func (*TColumnValue) IsSetShortVal

func (p *TColumnValue) IsSetShortVal() bool

func (*TColumnValue) IsSetStringVal

func (p *TColumnValue) IsSetStringVal() bool

func (*TColumnValue) IsSetTimestampVal

func (p *TColumnValue) IsSetTimestampVal() bool

func (*TColumnValue) Read

func (p *TColumnValue) Read(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnValue) ReadField1

func (p *TColumnValue) ReadField1(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnValue) ReadField10

func (p *TColumnValue) ReadField10(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnValue) ReadField11

func (p *TColumnValue) ReadField11(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnValue) ReadField2

func (p *TColumnValue) ReadField2(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnValue) ReadField3

func (p *TColumnValue) ReadField3(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnValue) ReadField4

func (p *TColumnValue) ReadField4(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnValue) ReadField5

func (p *TColumnValue) ReadField5(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnValue) ReadField6

func (p *TColumnValue) ReadField6(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnValue) ReadField7

func (p *TColumnValue) ReadField7(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnValue) ReadField8

func (p *TColumnValue) ReadField8(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnValue) ReadField9

func (p *TColumnValue) ReadField9(ctx context.Context, iprot thrift.TProtocol) error

func (*TColumnValue) String

func (p *TColumnValue) String() string

func (*TColumnValue) Write

func (p *TColumnValue) Write(ctx context.Context, oprot thrift.TProtocol) error

type TResultRow

type TResultRow struct {
	ColVals []*TColumnValue `thrift:"colVals,1" db:"colVals" json:"colVals"`
}

Attributes:

  • ColVals

func NewTResultRow

func NewTResultRow() *TResultRow

func (*TResultRow) Equals

func (p *TResultRow) Equals(other *TResultRow) bool

func (*TResultRow) GetColVals

func (p *TResultRow) GetColVals() []*TColumnValue

func (*TResultRow) Read

func (p *TResultRow) Read(ctx context.Context, iprot thrift.TProtocol) error

func (*TResultRow) ReadField1

func (p *TResultRow) ReadField1(ctx context.Context, iprot thrift.TProtocol) error

func (*TResultRow) String

func (p *TResultRow) String() string

func (*TResultRow) Write

func (p *TResultRow) Write(ctx context.Context, oprot thrift.TProtocol) error

Jump to

Keyboard shortcuts

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