aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/ClickHouse/ch-go/proto/col_decimal64_gen.go
blob: c37ffcd3755dec1b3135bb51be33760f800511b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Code generated by ./cmd/ch-gen-col, DO NOT EDIT.

package proto

// ColDecimal64 represents Decimal64 column.
type ColDecimal64 []Decimal64

// Compile-time assertions for ColDecimal64.
var (
	_ ColInput  = ColDecimal64{}
	_ ColResult = (*ColDecimal64)(nil)
	_ Column    = (*ColDecimal64)(nil)
)

// Rows returns count of rows in column.
func (c ColDecimal64) Rows() int {
	return len(c)
}

// Reset resets data in row, preserving capacity for efficiency.
func (c *ColDecimal64) Reset() {
	*c = (*c)[:0]
}

// Type returns ColumnType of Decimal64.
func (ColDecimal64) Type() ColumnType {
	return ColumnTypeDecimal64
}

// Row returns i-th row of column.
func (c ColDecimal64) Row(i int) Decimal64 {
	return c[i]
}

// Append Decimal64 to column.
func (c *ColDecimal64) Append(v Decimal64) {
	*c = append(*c, v)
}

// Append Decimal64 slice to column.
func (c *ColDecimal64) AppendArr(vs []Decimal64) {
	*c = append(*c, vs...)
}

// LowCardinality returns LowCardinality for Decimal64 .
func (c *ColDecimal64) LowCardinality() *ColLowCardinality[Decimal64] {
	return &ColLowCardinality[Decimal64]{
		index: c,
	}
}

// Array is helper that creates Array of Decimal64.
func (c *ColDecimal64) Array() *ColArr[Decimal64] {
	return &ColArr[Decimal64]{
		Data: c,
	}
}

// Nullable is helper that creates Nullable(Decimal64).
func (c *ColDecimal64) Nullable() *ColNullable[Decimal64] {
	return &ColNullable[Decimal64]{
		Values: c,
	}
}

// NewArrDecimal64 returns new Array(Decimal64).
func NewArrDecimal64() *ColArr[Decimal64] {
	return &ColArr[Decimal64]{
		Data: new(ColDecimal64),
	}
}