forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.go
162 lines (149 loc) · 4.01 KB
/
types.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
153
154
155
156
157
158
159
160
161
162
// 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 ranger
import (
"fmt"
"math"
"strconv"
"strings"
"github.com/juju/errors"
"github.com/pingcap/tidb/sessionctx/stmtctx"
"github.com/pingcap/tidb/types"
)
// IntColumnRange represents a range for a integer column, both low and high are inclusive.
type IntColumnRange struct {
LowVal int64
HighVal int64
}
// IsPoint returns if the table range is a point.
func (tr *IntColumnRange) IsPoint() bool {
return tr.HighVal == tr.LowVal
}
func (tr IntColumnRange) String() string {
var l, r string
if tr.LowVal == math.MinInt64 {
l = "(-inf"
} else {
l = "[" + strconv.FormatInt(tr.LowVal, 10)
}
if tr.HighVal == math.MaxInt64 {
r = "+inf)"
} else {
r = strconv.FormatInt(tr.HighVal, 10) + "]"
}
return l + "," + r
}
// NewRange represents a range generated in physical plan building phase.
type NewRange struct {
LowVal []types.Datum
HighVal []types.Datum
LowExclude bool // Low value is exclusive.
HighExclude bool // High value is exclusive.
}
// Clone clones a NewRange.
func (ran *NewRange) Clone() *NewRange {
newRange := &NewRange{
LowVal: make([]types.Datum, 0, len(ran.LowVal)),
HighVal: make([]types.Datum, 0, len(ran.HighVal)),
LowExclude: ran.LowExclude,
HighExclude: ran.HighExclude,
}
for i, length := 0, len(ran.LowVal); i < length; i++ {
newRange.LowVal = append(newRange.LowVal, ran.LowVal[i])
}
for i, length := 0, len(ran.HighVal); i < length; i++ {
newRange.HighVal = append(newRange.HighVal, ran.HighVal[i])
}
return newRange
}
// IsPoint returns if the range is a point.
func (ran *NewRange) IsPoint(sc *stmtctx.StatementContext) bool {
if len(ran.LowVal) != len(ran.HighVal) {
return false
}
for i := range ran.LowVal {
a := ran.LowVal[i]
b := ran.HighVal[i]
if a.Kind() == types.KindMinNotNull || b.Kind() == types.KindMaxValue {
return false
}
cmp, err := a.CompareDatum(sc, &b)
if err != nil {
return false
}
if cmp != 0 {
return false
}
}
return !ran.LowExclude && !ran.HighExclude
}
// Convert2NewRange implements the Convert2NewRange interface.
func (ran *NewRange) String() string {
lowStrs := make([]string, 0, len(ran.LowVal))
for _, d := range ran.LowVal {
lowStrs = append(lowStrs, formatDatum(d, true))
}
highStrs := make([]string, 0, len(ran.LowVal))
for _, d := range ran.HighVal {
highStrs = append(highStrs, formatDatum(d, false))
}
l, r := "[", "]"
if ran.LowExclude {
l = "("
}
if ran.HighExclude {
r = ")"
}
return l + strings.Join(lowStrs, " ") + "," + strings.Join(highStrs, " ") + r
}
// PrefixEqualLen tells you how long the prefix of the range is a point.
// e.g. If this range is (1 2 3, 1 2 +inf), then the return value is 2.
func (ran *NewRange) PrefixEqualLen(sc *stmtctx.StatementContext) (int, error) {
// Here, len(ran.LowVal) always equal to len(ran.HighVal)
for i := 0; i < len(ran.LowVal); i++ {
cmp, err := ran.LowVal[i].CompareDatum(sc, &ran.HighVal[i])
if err != nil {
return 0, errors.Trace(err)
}
if cmp != 0 {
return i, nil
}
}
return len(ran.LowVal), nil
}
func formatDatum(d types.Datum, isLeftSide bool) string {
switch d.Kind() {
case types.KindNull:
return "<nil>"
case types.KindMinNotNull:
return "-inf"
case types.KindMaxValue:
return "+inf"
case types.KindInt64:
switch d.GetInt64() {
case math.MinInt64:
if isLeftSide {
return "-inf"
}
case math.MaxInt64:
if !isLeftSide {
return "+inf"
}
}
case types.KindUint64:
if d.GetUint64() == math.MaxUint64 && !isLeftSide {
return "+inf"
}
}
return fmt.Sprintf("%v", d.GetValue())
}