blob: ad96b27a09e77d013013c4ac6a154357af8dde04 (
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
// ColDecimal256 represents Decimal256 column.
type ColDecimal256 []Decimal256
// Compile-time assertions for ColDecimal256.
var (
_ ColInput = ColDecimal256{}
_ ColResult = (*ColDecimal256)(nil)
_ Column = (*ColDecimal256)(nil)
)
// Rows returns count of rows in column.
func (c ColDecimal256) Rows() int {
return len(c)
}
// Reset resets data in row, preserving capacity for efficiency.
func (c *ColDecimal256) Reset() {
*c = (*c)[:0]
}
// Type returns ColumnType of Decimal256.
func (ColDecimal256) Type() ColumnType {
return ColumnTypeDecimal256
}
// Row returns i-th row of column.
func (c ColDecimal256) Row(i int) Decimal256 {
return c[i]
}
// Append Decimal256 to column.
func (c *ColDecimal256) Append(v Decimal256) {
*c = append(*c, v)
}
// Append Decimal256 slice to column.
func (c *ColDecimal256) AppendArr(vs []Decimal256) {
*c = append(*c, vs...)
}
// LowCardinality returns LowCardinality for Decimal256 .
func (c *ColDecimal256) LowCardinality() *ColLowCardinality[Decimal256] {
return &ColLowCardinality[Decimal256]{
index: c,
}
}
// Array is helper that creates Array of Decimal256.
func (c *ColDecimal256) Array() *ColArr[Decimal256] {
return &ColArr[Decimal256]{
Data: c,
}
}
// Nullable is helper that creates Nullable(Decimal256).
func (c *ColDecimal256) Nullable() *ColNullable[Decimal256] {
return &ColNullable[Decimal256]{
Values: c,
}
}
// NewArrDecimal256 returns new Array(Decimal256).
func NewArrDecimal256() *ColArr[Decimal256] {
return &ColArr[Decimal256]{
Data: new(ColDecimal256),
}
}
|