This repository was archived by the owner on Jan 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathconcat_ws.go
120 lines (98 loc) · 2.8 KB
/
concat_ws.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
package function
import (
"fmt"
"strings"
"github.com/src-d/go-mysql-server/sql"
)
// ConcatWithSeparator joins several strings together. The first argument is
// the separator for the rest of the arguments. The separator is added between
// the strings to be concatenated. The separator can be a string, as can the
// rest of the arguments. If the separator is NULL, the result is NULL.
type ConcatWithSeparator struct {
args []sql.Expression
}
// NewConcatWithSeparator creates a new NewConcatWithSeparator UDF.
func NewConcatWithSeparator(args ...sql.Expression) (sql.Expression, error) {
if len(args) == 0 {
return nil, sql.ErrInvalidArgumentNumber.New("CONCAT_WS", "1 or more", 0)
}
for _, arg := range args {
// Don't perform this check until it's resolved. Otherwise we
// can't get the type for sure.
if !arg.Resolved() {
continue
}
if len(args) > 1 && sql.IsArray(arg.Type()) {
return nil, ErrConcatArrayWithOthers.New()
}
if sql.IsTuple(arg.Type()) {
return nil, sql.ErrInvalidType.New("tuple")
}
}
return &ConcatWithSeparator{args}, nil
}
// Type implements the Expression interface.
func (f *ConcatWithSeparator) Type() sql.Type { return sql.Text }
// IsNullable implements the Expression interface.
func (f *ConcatWithSeparator) IsNullable() bool {
for _, arg := range f.args {
if arg.IsNullable() {
return true
}
}
return false
}
func (f *ConcatWithSeparator) String() string {
var args = make([]string, len(f.args))
for i, arg := range f.args {
args[i] = arg.String()
}
return fmt.Sprintf("concat_ws(%s)", strings.Join(args, ", "))
}
// WithChildren implements the Expression interface.
func (*ConcatWithSeparator) WithChildren(children ...sql.Expression) (sql.Expression, error) {
return NewConcatWithSeparator(children...)
}
// Resolved implements the Expression interface.
func (f *ConcatWithSeparator) Resolved() bool {
for _, arg := range f.args {
if !arg.Resolved() {
return false
}
}
return true
}
// Children implements the Expression interface.
func (f *ConcatWithSeparator) Children() []sql.Expression { return f.args }
// Eval implements the Expression interface.
func (f *ConcatWithSeparator) Eval(ctx *sql.Context, row sql.Row) (interface{}, error) {
var parts []string
for i, arg := range f.args {
val, err := arg.Eval(ctx, row)
if err != nil {
return nil, err
}
if val == nil && i == 0 {
return nil, nil
}
if val == nil {
continue
}
if sql.IsArray(arg.Type()) {
val, err = sql.Array(sql.Text).Convert(val)
if err != nil {
return nil, err
}
for _, v := range val.([]interface{}) {
parts = append(parts, v.(string))
}
} else {
val, err = sql.Text.Convert(val)
if err != nil {
return nil, err
}
parts = append(parts, val.(string))
}
}
return strings.Join(parts[1:], parts[0]), nil
}