forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
row.go
152 lines (118 loc) · 4 KB
/
row.go
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
// Copyright 2017 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package types
import "github.com/pingcap/tidb/types/json"
// Row is an interface to read columns values.
type Row interface {
// Len returns the number of values in the row.
Len() int
// GetInt64 returns the int64 value with the colIdx.
GetInt64(colIdx int) int64
// GetUint64 returns the uint64 value with the colIdx.
GetUint64(colIdx int) uint64
// GetFloat32 returns the float32 value with the colIdx.
GetFloat32(colIdx int) float32
// GetFloat64 returns the float64 value with the colIdx.
GetFloat64(colIdx int) float64
// GetString returns the string value with the colIdx.
GetString(colIdx int) string
// GetBytes returns the bytes value with the colIdx.
GetBytes(colIdx int) []byte
// GetTime returns the Time value with the colIdx.
GetTime(colIdx int) Time
// GetDuration returns the Duration value with the colIdx.
GetDuration(colIdx int) Duration
// GetEnum returns the Enum value with the colIdx.
GetEnum(colIdx int) Enum
// GetSet returns the Set value with the colIdx.
GetSet(colIdx int) Set
// GetMyDecimal returns the MyDecimal value with the colIdx.
GetMyDecimal(colIdx int) *MyDecimal
// GetJSON returns the JSON value with the colIdx.
GetJSON(colIdx int) json.BinaryJSON
// GetDatum returns a Datum with the colIdx and field type.
// This method is provided for convenience, direct type methods are preferred for better performance.
GetDatum(colIdx int, tp *FieldType) Datum
// IsNull returns if the value is null with the colIdx.
IsNull(colIdx int) bool
}
// DatumRow is a slice of Datum, implements Row interface.
type DatumRow []Datum
// Copy deep copies a DatumRow.
func (dr DatumRow) Copy() DatumRow {
c := make(DatumRow, len(dr))
for i, d := range dr {
c[i] = *d.Copy()
}
return c
}
// Len implements Row interface.
func (dr DatumRow) Len() int {
return len(dr)
}
// GetInt64 implements Row interface.
func (dr DatumRow) GetInt64(colIdx int) int64 {
return dr[colIdx].GetInt64()
}
// GetUint64 implements Row interface.
func (dr DatumRow) GetUint64(colIdx int) uint64 {
return dr[colIdx].GetUint64()
}
// GetFloat32 implements Row interface.
func (dr DatumRow) GetFloat32(colIdx int) float32 {
return dr[colIdx].GetFloat32()
}
// GetFloat64 implements Row interface.
func (dr DatumRow) GetFloat64(colIdx int) float64 {
return dr[colIdx].GetFloat64()
}
// GetString implements Row interface.
func (dr DatumRow) GetString(colIdx int) string {
return dr[colIdx].GetString()
}
// GetBytes implements Row interface.
func (dr DatumRow) GetBytes(colIdx int) []byte {
return dr[colIdx].GetBytes()
}
// GetTime implements Row interface.
func (dr DatumRow) GetTime(colIdx int) Time {
return dr[colIdx].GetMysqlTime()
}
// GetDuration implements Row interface.
func (dr DatumRow) GetDuration(colIdx int) Duration {
return dr[colIdx].GetMysqlDuration()
}
// GetEnum implements Row interface.
func (dr DatumRow) GetEnum(colIdx int) Enum {
return dr[colIdx].GetMysqlEnum()
}
// GetSet implements Row interface.
func (dr DatumRow) GetSet(colIdx int) Set {
return dr[colIdx].GetMysqlSet()
}
// GetMyDecimal implements Row interface.
func (dr DatumRow) GetMyDecimal(colIdx int) *MyDecimal {
return dr[colIdx].GetMysqlDecimal()
}
// GetJSON implements Row interface.
func (dr DatumRow) GetJSON(colIdx int) json.BinaryJSON {
return dr[colIdx].GetMysqlJSON()
}
// GetDatum implements Row interface.
func (dr DatumRow) GetDatum(colIdx int, tp *FieldType) Datum {
return dr[colIdx]
}
// IsNull implements Row interface.
func (dr DatumRow) IsNull(colIdx int) bool {
return dr[colIdx].IsNull()
}