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 pathsqrt_power.go
127 lines (101 loc) · 2.77 KB
/
sqrt_power.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
package function
import (
"fmt"
"math"
"github.com/src-d/go-mysql-server/sql"
"github.com/src-d/go-mysql-server/sql/expression"
)
// Sqrt is a function that returns the square value of the number provided.
type Sqrt struct {
expression.UnaryExpression
}
// NewSqrt creates a new Sqrt expression.
func NewSqrt(e sql.Expression) sql.Expression {
return &Sqrt{expression.UnaryExpression{Child: e}}
}
func (s *Sqrt) String() string {
return fmt.Sprintf("sqrt(%s)", s.Child.String())
}
// Type implements the Expression interface.
func (s *Sqrt) Type() sql.Type {
return sql.Float64
}
// IsNullable implements the Expression interface.
func (s *Sqrt) IsNullable() bool {
return s.Child.IsNullable()
}
// WithChildren implements the Expression interface.
func (s *Sqrt) WithChildren(children ...sql.Expression) (sql.Expression, error) {
if len(children) != 1 {
return nil, sql.ErrInvalidChildrenNumber.New(s, len(children), 1)
}
return NewSqrt(children[0]), nil
}
// Eval implements the Expression interface.
func (s *Sqrt) Eval(ctx *sql.Context, row sql.Row) (interface{}, error) {
child, err := s.Child.Eval(ctx, row)
if err != nil {
return nil, err
}
if child == nil {
return nil, nil
}
child, err = sql.Float64.Convert(child)
if err != nil {
return nil, err
}
return math.Sqrt(child.(float64)), nil
}
// Power is a function that returns value of X raised to the power of Y.
type Power struct {
expression.BinaryExpression
}
// NewPower creates a new Power expression.
func NewPower(e1, e2 sql.Expression) sql.Expression {
return &Power{
expression.BinaryExpression{
Left: e1,
Right: e2,
},
}
}
// Type implements the Expression interface.
func (p *Power) Type() sql.Type { return sql.Float64 }
// IsNullable implements the Expression interface.
func (p *Power) IsNullable() bool { return p.Left.IsNullable() || p.Right.IsNullable() }
func (p *Power) String() string {
return fmt.Sprintf("power(%s, %s)", p.Left, p.Right)
}
// WithChildren implements the Expression interface.
func (p *Power) WithChildren(children ...sql.Expression) (sql.Expression, error) {
if len(children) != 2 {
return nil, sql.ErrInvalidChildrenNumber.New(p, len(children), 2)
}
return NewPower(children[0], children[0]), nil
}
// Eval implements the Expression interface.
func (p *Power) Eval(ctx *sql.Context, row sql.Row) (interface{}, error) {
left, err := p.Left.Eval(ctx, row)
if err != nil {
return nil, err
}
if left == nil {
return nil, nil
}
left, err = sql.Float64.Convert(left)
if err != nil {
return nil, err
}
right, err := p.Right.Eval(ctx, row)
if err != nil {
return nil, err
}
if right == nil {
return nil, nil
}
right, err = sql.Float64.Convert(right)
if err != nil {
return nil, err
}
return math.Pow(left.(float64), right.(float64)), nil
}