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