This repository was archived by the owner on Feb 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtypes.go
52 lines (47 loc) · 1.62 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
// Copyright 2019 The Gaea Authors. All Rights Reserved.
//
// 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,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package util
import (
"github.com/pingcap/parser/format"
"strings"
"github.com/pingcap/tidb/types"
driver "github.com/pingcap/tidb/types/parser_driver"
)
var EscapeRestoreFlags = format.RestoreStringSingleQuotes | format.RestoreStringEscapeBackslash | format.RestoreKeyWordUppercase | format.RestoreNameBackQuotes
// GetValueExprResult copy from ValueExpr.Restore()
// TODO: 分表列是否需要支持等值比较NULL
func GetValueExprResult(n *driver.ValueExpr) (interface{}, error) {
switch n.Kind() {
case types.KindNull:
return nil, nil // TODO: null str or nil?
case types.KindInt64:
return n.GetInt64(), nil
case types.KindUint64:
return n.GetUint64(), nil
case types.KindFloat32:
return n.GetFloat32(), nil
case types.KindFloat64:
return n.GetFloat64(), nil
case types.KindString, types.KindBytes:
return n.GetString(), nil
default:
s := &strings.Builder{}
ctx := format.NewRestoreCtx(EscapeRestoreFlags, s)
err := n.Restore(ctx)
if err != nil {
return nil, err
}
return s.String(), nil
}
}