forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
builtin_arithmetic.go
804 lines (723 loc) · 27.2 KB
/
builtin_arithmetic.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
// 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 expression
import (
"fmt"
"math"
"github.com/cznic/mathutil"
"github.com/juju/errors"
"github.com/pingcap/tidb/mysql"
"github.com/pingcap/tidb/sessionctx"
"github.com/pingcap/tidb/types"
tipb "github.com/pingcap/tipb/go-tipb"
)
var (
_ functionClass = &arithmeticPlusFunctionClass{}
_ functionClass = &arithmeticMinusFunctionClass{}
_ functionClass = &arithmeticDivideFunctionClass{}
_ functionClass = &arithmeticMultiplyFunctionClass{}
_ functionClass = &arithmeticIntDivideFunctionClass{}
_ functionClass = &arithmeticModFunctionClass{}
)
var (
_ builtinFunc = &builtinArithmeticPlusRealSig{}
_ builtinFunc = &builtinArithmeticPlusDecimalSig{}
_ builtinFunc = &builtinArithmeticPlusIntSig{}
_ builtinFunc = &builtinArithmeticMinusRealSig{}
_ builtinFunc = &builtinArithmeticMinusDecimalSig{}
_ builtinFunc = &builtinArithmeticMinusIntSig{}
_ builtinFunc = &builtinArithmeticDivideRealSig{}
_ builtinFunc = &builtinArithmeticDivideDecimalSig{}
_ builtinFunc = &builtinArithmeticMultiplyRealSig{}
_ builtinFunc = &builtinArithmeticMultiplyDecimalSig{}
_ builtinFunc = &builtinArithmeticMultiplyIntUnsignedSig{}
_ builtinFunc = &builtinArithmeticMultiplyIntSig{}
_ builtinFunc = &builtinArithmeticIntDivideIntSig{}
_ builtinFunc = &builtinArithmeticIntDivideDecimalSig{}
_ builtinFunc = &builtinArithmeticModIntSig{}
_ builtinFunc = &builtinArithmeticModRealSig{}
_ builtinFunc = &builtinArithmeticModDecimalSig{}
)
// precIncrement indicates the number of digits by which to increase the scale of the result of division operations
// performed with the / operator.
const precIncrement = 4
// numericContextResultType returns types.EvalType for numeric function's parameters.
// the returned types.EvalType should be one of: types.ETInt, types.ETDecimal, types.ETReal
func numericContextResultType(ft *types.FieldType) types.EvalType {
if types.IsTypeTemporal(ft.Tp) {
if ft.Decimal > 0 {
return types.ETDecimal
}
return types.ETInt
}
evalTp4Ft := types.ETReal
if !ft.Hybrid() {
evalTp4Ft = ft.EvalType()
if evalTp4Ft != types.ETDecimal && evalTp4Ft != types.ETInt {
evalTp4Ft = types.ETReal
}
}
return evalTp4Ft
}
// setFlenDecimal4Int is called to set proper `Flen` and `Decimal` of return
// type according to the two input parameter's types.
func setFlenDecimal4Int(retTp, a, b *types.FieldType) {
retTp.Decimal = 0
retTp.Flen = mysql.MaxIntWidth
}
// setFlenDecimal4Real is called to set proper `Flen` and `Decimal` of return
// type according to the two input parameter's types.
func setFlenDecimal4RealOrDecimal(retTp, a, b *types.FieldType, isReal bool) {
if a.Decimal != types.UnspecifiedLength && b.Decimal != types.UnspecifiedLength {
retTp.Decimal = a.Decimal + b.Decimal
if !isReal && retTp.Decimal > mysql.MaxDecimalScale {
retTp.Decimal = mysql.MaxDecimalScale
}
if a.Flen == types.UnspecifiedLength || b.Flen == types.UnspecifiedLength {
retTp.Flen = types.UnspecifiedLength
return
}
digitsInt := mathutil.Max(a.Flen-a.Decimal, b.Flen-b.Decimal)
retTp.Flen = digitsInt + retTp.Decimal + 3
if isReal {
retTp.Flen = mathutil.Min(retTp.Flen, mysql.MaxRealWidth)
return
}
retTp.Flen = mathutil.Min(retTp.Flen, mysql.MaxDecimalWidth)
return
}
if isReal {
retTp.Flen, retTp.Decimal = types.UnspecifiedLength, types.UnspecifiedLength
} else {
retTp.Flen, retTp.Decimal = mysql.MaxDecimalWidth, mysql.MaxDecimalScale
}
}
func (c *arithmeticDivideFunctionClass) setType4DivDecimal(retTp, a, b *types.FieldType) {
var deca, decb = a.Decimal, b.Decimal
if deca == types.UnspecifiedFsp {
deca = 0
}
if decb == types.UnspecifiedFsp {
decb = 0
}
retTp.Decimal = deca + precIncrement
if retTp.Decimal > mysql.MaxDecimalScale {
retTp.Decimal = mysql.MaxDecimalScale
}
if a.Flen == types.UnspecifiedLength {
retTp.Flen = mysql.MaxDecimalWidth
return
}
retTp.Flen = a.Flen + decb + precIncrement
if retTp.Flen > mysql.MaxDecimalWidth {
retTp.Flen = mysql.MaxDecimalWidth
}
}
func (c *arithmeticDivideFunctionClass) setType4DivReal(retTp *types.FieldType) {
retTp.Decimal = mysql.NotFixedDec
retTp.Flen = mysql.MaxRealWidth
}
type arithmeticPlusFunctionClass struct {
baseFunctionClass
}
func (c *arithmeticPlusFunctionClass) getFunction(ctx sessionctx.Context, args []Expression) (builtinFunc, error) {
if err := c.verifyArgs(args); err != nil {
return nil, errors.Trace(err)
}
lhsTp, rhsTp := args[0].GetType(), args[1].GetType()
lhsEvalTp, rhsEvalTp := numericContextResultType(lhsTp), numericContextResultType(rhsTp)
if lhsEvalTp == types.ETReal || rhsEvalTp == types.ETReal {
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETReal, types.ETReal, types.ETReal)
setFlenDecimal4RealOrDecimal(bf.tp, args[0].GetType(), args[1].GetType(), true)
sig := &builtinArithmeticPlusRealSig{bf}
sig.setPbCode(tipb.ScalarFuncSig_PlusReal)
return sig, nil
} else if lhsEvalTp == types.ETDecimal || rhsEvalTp == types.ETDecimal {
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETDecimal, types.ETDecimal, types.ETDecimal)
setFlenDecimal4RealOrDecimal(bf.tp, args[0].GetType(), args[1].GetType(), false)
sig := &builtinArithmeticPlusDecimalSig{bf}
sig.setPbCode(tipb.ScalarFuncSig_PlusDecimal)
return sig, nil
} else {
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETInt, types.ETInt, types.ETInt)
if mysql.HasUnsignedFlag(args[0].GetType().Flag) || mysql.HasUnsignedFlag(args[1].GetType().Flag) {
bf.tp.Flag |= mysql.UnsignedFlag
}
setFlenDecimal4Int(bf.tp, args[0].GetType(), args[1].GetType())
sig := &builtinArithmeticPlusIntSig{bf}
sig.setPbCode(tipb.ScalarFuncSig_PlusInt)
return sig, nil
}
}
type builtinArithmeticPlusIntSig struct {
baseBuiltinFunc
}
func (s *builtinArithmeticPlusIntSig) evalInt(row types.Row) (val int64, isNull bool, err error) {
a, isNull, err := s.args[0].EvalInt(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
b, isNull, err := s.args[1].EvalInt(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
isLHSUnsigned := mysql.HasUnsignedFlag(s.args[0].GetType().Flag)
isRHSUnsigned := mysql.HasUnsignedFlag(s.args[1].GetType().Flag)
switch {
case isLHSUnsigned && isRHSUnsigned:
if uint64(a) > math.MaxUint64-uint64(b) {
return 0, true, types.ErrOverflow.GenByArgs("BIGINT UNSIGNED", fmt.Sprintf("(%s + %s)", s.args[0].String(), s.args[1].String()))
}
case isLHSUnsigned && !isRHSUnsigned:
if b < 0 && uint64(-b) > uint64(a) {
return 0, true, types.ErrOverflow.GenByArgs("BIGINT UNSIGNED", fmt.Sprintf("(%s + %s)", s.args[0].String(), s.args[1].String()))
}
if b > 0 && uint64(a) > math.MaxUint64-uint64(b) {
return 0, true, types.ErrOverflow.GenByArgs("BIGINT UNSIGNED", fmt.Sprintf("(%s + %s)", s.args[0].String(), s.args[1].String()))
}
case !isLHSUnsigned && isRHSUnsigned:
if a < 0 && uint64(-a) > uint64(b) {
return 0, true, types.ErrOverflow.GenByArgs("BIGINT UNSIGNED", fmt.Sprintf("(%s + %s)", s.args[0].String(), s.args[1].String()))
}
if a > 0 && uint64(b) > math.MaxInt64-uint64(a) {
return 0, true, types.ErrOverflow.GenByArgs("BIGINT UNSIGNED", fmt.Sprintf("(%s + %s)", s.args[0].String(), s.args[1].String()))
}
case !isLHSUnsigned && !isRHSUnsigned:
if (a > 0 && b > math.MaxInt64-a) || (a < 0 && b < math.MinInt64-a) {
return 0, true, types.ErrOverflow.GenByArgs("BIGINT", fmt.Sprintf("(%s + %s)", s.args[0].String(), s.args[1].String()))
}
}
return a + b, false, nil
}
type builtinArithmeticPlusDecimalSig struct {
baseBuiltinFunc
}
func (s *builtinArithmeticPlusDecimalSig) evalDecimal(row types.Row) (*types.MyDecimal, bool, error) {
a, isNull, err := s.args[0].EvalDecimal(s.ctx, row)
if isNull || err != nil {
return nil, isNull, errors.Trace(err)
}
b, isNull, err := s.args[1].EvalDecimal(s.ctx, row)
if isNull || err != nil {
return nil, isNull, errors.Trace(err)
}
c := &types.MyDecimal{}
err = types.DecimalAdd(a, b, c)
if err != nil {
return nil, true, errors.Trace(err)
}
return c, false, nil
}
type builtinArithmeticPlusRealSig struct {
baseBuiltinFunc
}
func (s *builtinArithmeticPlusRealSig) evalReal(row types.Row) (float64, bool, error) {
a, isNull, err := s.args[0].EvalReal(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
b, isNull, err := s.args[1].EvalReal(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
if (a > 0 && b > math.MaxFloat64-a) || (a < 0 && b < -math.MaxFloat64-a) {
return 0, true, types.ErrOverflow.GenByArgs("DOUBLE", fmt.Sprintf("(%s + %s)", s.args[0].String(), s.args[1].String()))
}
return a + b, false, nil
}
type arithmeticMinusFunctionClass struct {
baseFunctionClass
}
func (c *arithmeticMinusFunctionClass) getFunction(ctx sessionctx.Context, args []Expression) (builtinFunc, error) {
if err := c.verifyArgs(args); err != nil {
return nil, errors.Trace(err)
}
lhsTp, rhsTp := args[0].GetType(), args[1].GetType()
lhsEvalTp, rhsEvalTp := numericContextResultType(lhsTp), numericContextResultType(rhsTp)
if lhsEvalTp == types.ETReal || rhsEvalTp == types.ETReal {
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETReal, types.ETReal, types.ETReal)
setFlenDecimal4RealOrDecimal(bf.tp, args[0].GetType(), args[1].GetType(), true)
sig := &builtinArithmeticMinusRealSig{bf}
sig.setPbCode(tipb.ScalarFuncSig_MinusReal)
return sig, nil
} else if lhsEvalTp == types.ETDecimal || rhsEvalTp == types.ETDecimal {
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETDecimal, types.ETDecimal, types.ETDecimal)
setFlenDecimal4RealOrDecimal(bf.tp, args[0].GetType(), args[1].GetType(), false)
sig := &builtinArithmeticMinusDecimalSig{bf}
sig.setPbCode(tipb.ScalarFuncSig_MinusDecimal)
return sig, nil
} else {
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETInt, types.ETInt, types.ETInt)
setFlenDecimal4Int(bf.tp, args[0].GetType(), args[1].GetType())
if (mysql.HasUnsignedFlag(args[0].GetType().Flag) || mysql.HasUnsignedFlag(args[1].GetType().Flag)) && !ctx.GetSessionVars().SQLMode.HasNoUnsignedSubtractionMode() {
bf.tp.Flag |= mysql.UnsignedFlag
}
sig := &builtinArithmeticMinusIntSig{baseBuiltinFunc: bf}
sig.setPbCode(tipb.ScalarFuncSig_MinusInt)
return sig, nil
}
}
type builtinArithmeticMinusRealSig struct {
baseBuiltinFunc
}
func (s *builtinArithmeticMinusRealSig) evalReal(row types.Row) (float64, bool, error) {
a, isNull, err := s.args[0].EvalReal(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
b, isNull, err := s.args[1].EvalReal(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
if (a > 0 && -b > math.MaxFloat64-a) || (a < 0 && -b < -math.MaxFloat64-a) {
return 0, true, types.ErrOverflow.GenByArgs("DOUBLE", fmt.Sprintf("(%s - %s)", s.args[0].String(), s.args[1].String()))
}
return a - b, false, nil
}
type builtinArithmeticMinusDecimalSig struct {
baseBuiltinFunc
}
func (s *builtinArithmeticMinusDecimalSig) evalDecimal(row types.Row) (*types.MyDecimal, bool, error) {
a, isNull, err := s.args[0].EvalDecimal(s.ctx, row)
if isNull || err != nil {
return nil, isNull, errors.Trace(err)
}
b, isNull, err := s.args[1].EvalDecimal(s.ctx, row)
if isNull || err != nil {
return nil, isNull, errors.Trace(err)
}
c := &types.MyDecimal{}
err = types.DecimalSub(a, b, c)
if err != nil {
return nil, true, errors.Trace(err)
}
return c, false, nil
}
type builtinArithmeticMinusIntSig struct {
baseBuiltinFunc
}
func (s *builtinArithmeticMinusIntSig) evalInt(row types.Row) (val int64, isNull bool, err error) {
a, isNull, err := s.args[0].EvalInt(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
b, isNull, err := s.args[1].EvalInt(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
forceToSigned := s.ctx.GetSessionVars().SQLMode.HasNoUnsignedSubtractionMode()
isLHSUnsigned := !forceToSigned && mysql.HasUnsignedFlag(s.args[0].GetType().Flag)
isRHSUnsigned := !forceToSigned && mysql.HasUnsignedFlag(s.args[1].GetType().Flag)
if forceToSigned && mysql.HasUnsignedFlag(s.args[0].GetType().Flag) {
if a < 0 || (a > math.MaxInt64) {
return 0, true, types.ErrOverflow.GenByArgs("BIGINT UNSIGNED", fmt.Sprintf("(%s - %s)", s.args[0].String(), s.args[1].String()))
}
}
if forceToSigned && mysql.HasUnsignedFlag(s.args[1].GetType().Flag) {
if b < 0 || (b > math.MaxInt64) {
return 0, true, types.ErrOverflow.GenByArgs("BIGINT UNSIGNED", fmt.Sprintf("(%s - %s)", s.args[0].String(), s.args[1].String()))
}
}
switch {
case isLHSUnsigned && isRHSUnsigned:
if uint64(a) < uint64(b) {
return 0, true, types.ErrOverflow.GenByArgs("BIGINT UNSIGNED", fmt.Sprintf("(%s - %s)", s.args[0].String(), s.args[1].String()))
}
case isLHSUnsigned && !isRHSUnsigned:
if b >= 0 && uint64(a) < uint64(b) {
return 0, true, types.ErrOverflow.GenByArgs("BIGINT UNSIGNED", fmt.Sprintf("(%s - %s)", s.args[0].String(), s.args[1].String()))
}
if b < 0 && uint64(a) > math.MaxUint64-uint64(-b) {
return 0, true, types.ErrOverflow.GenByArgs("BIGINT UNSIGNED", fmt.Sprintf("(%s - %s)", s.args[0].String(), s.args[1].String()))
}
case !isLHSUnsigned && isRHSUnsigned:
if uint64(a-math.MinInt64) < uint64(b) {
return 0, true, types.ErrOverflow.GenByArgs("BIGINT UNSIGNED", fmt.Sprintf("(%s - %s)", s.args[0].String(), s.args[1].String()))
}
case !isLHSUnsigned && !isRHSUnsigned:
if (a > 0 && -b > math.MaxInt64-a) || (a < 0 && -b < math.MinInt64-a) {
return 0, true, types.ErrOverflow.GenByArgs("BIGINT", fmt.Sprintf("(%s - %s)", s.args[0].String(), s.args[1].String()))
}
}
return a - b, false, nil
}
type arithmeticMultiplyFunctionClass struct {
baseFunctionClass
}
func (c *arithmeticMultiplyFunctionClass) getFunction(ctx sessionctx.Context, args []Expression) (builtinFunc, error) {
if err := c.verifyArgs(args); err != nil {
return nil, errors.Trace(err)
}
lhsTp, rhsTp := args[0].GetType(), args[1].GetType()
lhsEvalTp, rhsEvalTp := numericContextResultType(lhsTp), numericContextResultType(rhsTp)
if lhsEvalTp == types.ETReal || rhsEvalTp == types.ETReal {
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETReal, types.ETReal, types.ETReal)
setFlenDecimal4RealOrDecimal(bf.tp, args[0].GetType(), args[1].GetType(), true)
sig := &builtinArithmeticMultiplyRealSig{bf}
sig.setPbCode(tipb.ScalarFuncSig_MultiplyReal)
return sig, nil
} else if lhsEvalTp == types.ETDecimal || rhsEvalTp == types.ETDecimal {
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETDecimal, types.ETDecimal, types.ETDecimal)
setFlenDecimal4RealOrDecimal(bf.tp, args[0].GetType(), args[1].GetType(), false)
sig := &builtinArithmeticMultiplyDecimalSig{bf}
sig.setPbCode(tipb.ScalarFuncSig_MultiplyDecimal)
return sig, nil
} else {
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETInt, types.ETInt, types.ETInt)
if mysql.HasUnsignedFlag(lhsTp.Flag) || mysql.HasUnsignedFlag(rhsTp.Flag) {
bf.tp.Flag |= mysql.UnsignedFlag
setFlenDecimal4Int(bf.tp, args[0].GetType(), args[1].GetType())
sig := &builtinArithmeticMultiplyIntUnsignedSig{bf}
sig.setPbCode(tipb.ScalarFuncSig_MultiplyInt)
return sig, nil
}
setFlenDecimal4Int(bf.tp, args[0].GetType(), args[1].GetType())
sig := &builtinArithmeticMultiplyIntSig{bf}
sig.setPbCode(tipb.ScalarFuncSig_MultiplyInt)
return sig, nil
}
}
type builtinArithmeticMultiplyRealSig struct{ baseBuiltinFunc }
type builtinArithmeticMultiplyDecimalSig struct{ baseBuiltinFunc }
type builtinArithmeticMultiplyIntUnsignedSig struct{ baseBuiltinFunc }
type builtinArithmeticMultiplyIntSig struct{ baseBuiltinFunc }
func (s *builtinArithmeticMultiplyRealSig) evalReal(row types.Row) (float64, bool, error) {
a, isNull, err := s.args[0].EvalReal(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
b, isNull, err := s.args[1].EvalReal(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
result := a * b
if math.IsInf(result, 0) {
return 0, true, types.ErrOverflow.GenByArgs("DOUBLE", fmt.Sprintf("(%s * %s)", s.args[0].String(), s.args[1].String()))
}
return result, false, nil
}
func (s *builtinArithmeticMultiplyDecimalSig) evalDecimal(row types.Row) (*types.MyDecimal, bool, error) {
a, isNull, err := s.args[0].EvalDecimal(s.ctx, row)
if isNull || err != nil {
return nil, isNull, errors.Trace(err)
}
b, isNull, err := s.args[1].EvalDecimal(s.ctx, row)
if isNull || err != nil {
return nil, isNull, errors.Trace(err)
}
c := &types.MyDecimal{}
err = types.DecimalMul(a, b, c)
if err != nil {
return nil, true, errors.Trace(err)
}
return c, false, nil
}
func (s *builtinArithmeticMultiplyIntUnsignedSig) evalInt(row types.Row) (val int64, isNull bool, err error) {
a, isNull, err := s.args[0].EvalInt(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
unsignedA := uint64(a)
b, isNull, err := s.args[1].EvalInt(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
unsignedB := uint64(b)
result := unsignedA * unsignedB
if unsignedA != 0 && result/unsignedA != unsignedB {
return 0, true, types.ErrOverflow.GenByArgs("BIGINT UNSIGNED", fmt.Sprintf("(%s * %s)", s.args[0].String(), s.args[1].String()))
}
return int64(result), false, nil
}
func (s *builtinArithmeticMultiplyIntSig) evalInt(row types.Row) (val int64, isNull bool, err error) {
a, isNull, err := s.args[0].EvalInt(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
b, isNull, err := s.args[1].EvalInt(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
result := a * b
if a != 0 && result/a != b {
return 0, true, types.ErrOverflow.GenByArgs("BIGINT", fmt.Sprintf("(%s * %s)", s.args[0].String(), s.args[1].String()))
}
return result, false, nil
}
type arithmeticDivideFunctionClass struct {
baseFunctionClass
}
func (c *arithmeticDivideFunctionClass) getFunction(ctx sessionctx.Context, args []Expression) (builtinFunc, error) {
if err := c.verifyArgs(args); err != nil {
return nil, errors.Trace(err)
}
lhsTp, rhsTp := args[0].GetType(), args[1].GetType()
lhsEvalTp, rhsEvalTp := numericContextResultType(lhsTp), numericContextResultType(rhsTp)
if lhsEvalTp == types.ETReal || rhsEvalTp == types.ETReal {
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETReal, types.ETReal, types.ETReal)
c.setType4DivReal(bf.tp)
sig := &builtinArithmeticDivideRealSig{bf}
sig.setPbCode(tipb.ScalarFuncSig_DivideReal)
return sig, nil
}
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETDecimal, types.ETDecimal, types.ETDecimal)
c.setType4DivDecimal(bf.tp, lhsTp, rhsTp)
sig := &builtinArithmeticDivideDecimalSig{bf}
return sig, nil
}
type builtinArithmeticDivideRealSig struct{ baseBuiltinFunc }
type builtinArithmeticDivideDecimalSig struct{ baseBuiltinFunc }
func (s *builtinArithmeticDivideRealSig) evalReal(row types.Row) (float64, bool, error) {
a, isNull, err := s.args[0].EvalReal(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
b, isNull, err := s.args[1].EvalReal(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
if b == 0 {
return 0, true, errors.Trace(handleDivisionByZeroError(s.ctx))
}
result := a / b
if math.IsInf(result, 0) {
return 0, true, types.ErrOverflow.GenByArgs("DOUBLE", fmt.Sprintf("(%s / %s)", s.args[0].String(), s.args[1].String()))
}
return result, false, nil
}
func (s *builtinArithmeticDivideDecimalSig) evalDecimal(row types.Row) (*types.MyDecimal, bool, error) {
a, isNull, err := s.args[0].EvalDecimal(s.ctx, row)
if isNull || err != nil {
return nil, isNull, errors.Trace(err)
}
b, isNull, err := s.args[1].EvalDecimal(s.ctx, row)
if isNull || err != nil {
return nil, isNull, errors.Trace(err)
}
c := &types.MyDecimal{}
err = types.DecimalDiv(a, b, c, types.DivFracIncr)
if err == types.ErrDivByZero {
return c, true, errors.Trace(handleDivisionByZeroError(s.ctx))
}
return c, false, err
}
type arithmeticIntDivideFunctionClass struct {
baseFunctionClass
}
func (c *arithmeticIntDivideFunctionClass) getFunction(ctx sessionctx.Context, args []Expression) (builtinFunc, error) {
if err := c.verifyArgs(args); err != nil {
return nil, errors.Trace(err)
}
lhsTp, rhsTp := args[0].GetType(), args[1].GetType()
lhsEvalTp, rhsEvalTp := numericContextResultType(lhsTp), numericContextResultType(rhsTp)
if lhsEvalTp == types.ETInt && rhsEvalTp == types.ETInt {
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETInt, types.ETInt, types.ETInt)
if mysql.HasUnsignedFlag(lhsTp.Flag) || mysql.HasUnsignedFlag(rhsTp.Flag) {
bf.tp.Flag |= mysql.UnsignedFlag
}
sig := &builtinArithmeticIntDivideIntSig{bf}
return sig, nil
}
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETInt, types.ETDecimal, types.ETDecimal)
if mysql.HasUnsignedFlag(lhsTp.Flag) || mysql.HasUnsignedFlag(rhsTp.Flag) {
bf.tp.Flag |= mysql.UnsignedFlag
}
sig := &builtinArithmeticIntDivideDecimalSig{bf}
return sig, nil
}
type builtinArithmeticIntDivideIntSig struct{ baseBuiltinFunc }
type builtinArithmeticIntDivideDecimalSig struct{ baseBuiltinFunc }
func (s *builtinArithmeticIntDivideIntSig) evalInt(row types.Row) (int64, bool, error) {
b, isNull, err := s.args[1].EvalInt(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
if b == 0 {
return 0, true, errors.Trace(handleDivisionByZeroError(s.ctx))
}
a, isNull, err := s.args[0].EvalInt(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
var (
ret int64
val uint64
)
isLHSUnsigned := mysql.HasUnsignedFlag(s.args[0].GetType().Flag)
isRHSUnsigned := mysql.HasUnsignedFlag(s.args[1].GetType().Flag)
switch {
case isLHSUnsigned && isRHSUnsigned:
ret = int64(uint64(a) / uint64(b))
case isLHSUnsigned && !isRHSUnsigned:
val, err = types.DivUintWithInt(uint64(a), b)
ret = int64(val)
case !isLHSUnsigned && isRHSUnsigned:
val, err = types.DivIntWithUint(a, uint64(b))
ret = int64(val)
case !isLHSUnsigned && !isRHSUnsigned:
ret, err = types.DivInt64(a, b)
}
return ret, err != nil, errors.Trace(err)
}
func (s *builtinArithmeticIntDivideDecimalSig) evalInt(row types.Row) (int64, bool, error) {
a, isNull, err := s.args[0].EvalDecimal(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
b, isNull, err := s.args[1].EvalDecimal(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
c := &types.MyDecimal{}
err = types.DecimalDiv(a, b, c, types.DivFracIncr)
if err == types.ErrDivByZero {
return 0, true, errors.Trace(handleDivisionByZeroError(s.ctx))
}
if err != nil {
return 0, true, errors.Trace(err)
}
ret, err := c.ToInt()
// err returned by ToInt may be ErrTruncated or ErrOverflow, only handle ErrOverflow, ignore ErrTruncated.
if err == types.ErrOverflow {
return 0, true, errors.Trace(err)
}
return ret, false, nil
}
type arithmeticModFunctionClass struct {
baseFunctionClass
}
func (c *arithmeticModFunctionClass) setType4ModRealOrDecimal(retTp, a, b *types.FieldType, isDecimal bool) {
if a.Decimal == types.UnspecifiedLength || b.Decimal == types.UnspecifiedLength {
retTp.Decimal = types.UnspecifiedLength
} else {
retTp.Decimal = mathutil.Max(a.Decimal, b.Decimal)
if isDecimal && retTp.Decimal > mysql.MaxDecimalScale {
retTp.Decimal = mysql.MaxDecimalScale
}
}
if a.Flen == types.UnspecifiedLength || b.Flen == types.UnspecifiedLength {
retTp.Flen = types.UnspecifiedLength
} else {
retTp.Flen = mathutil.Max(a.Flen, b.Flen)
if isDecimal {
retTp.Flen = mathutil.Min(retTp.Flen, mysql.MaxDecimalWidth)
return
}
retTp.Flen = mathutil.Min(retTp.Flen, mysql.MaxRealWidth)
}
}
func (c *arithmeticModFunctionClass) getFunction(ctx sessionctx.Context, args []Expression) (builtinFunc, error) {
if err := c.verifyArgs(args); err != nil {
return nil, errors.Trace(err)
}
lhsTp, rhsTp := args[0].GetType(), args[1].GetType()
lhsEvalTp, rhsEvalTp := numericContextResultType(lhsTp), numericContextResultType(rhsTp)
if lhsEvalTp == types.ETReal || rhsEvalTp == types.ETReal {
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETReal, types.ETReal, types.ETReal)
c.setType4ModRealOrDecimal(bf.tp, lhsTp, rhsTp, false)
if mysql.HasUnsignedFlag(lhsTp.Flag) {
bf.tp.Flag |= mysql.UnsignedFlag
}
sig := &builtinArithmeticModRealSig{bf}
return sig, nil
} else if lhsEvalTp == types.ETDecimal || rhsEvalTp == types.ETDecimal {
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETDecimal, types.ETDecimal, types.ETDecimal)
c.setType4ModRealOrDecimal(bf.tp, lhsTp, rhsTp, true)
if mysql.HasUnsignedFlag(lhsTp.Flag) {
bf.tp.Flag |= mysql.UnsignedFlag
}
sig := &builtinArithmeticModDecimalSig{bf}
return sig, nil
} else {
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETInt, types.ETInt, types.ETInt)
if mysql.HasUnsignedFlag(lhsTp.Flag) {
bf.tp.Flag |= mysql.UnsignedFlag
}
sig := &builtinArithmeticModIntSig{bf}
return sig, nil
}
}
type builtinArithmeticModRealSig struct {
baseBuiltinFunc
}
func (s *builtinArithmeticModRealSig) evalReal(row types.Row) (float64, bool, error) {
b, isNull, err := s.args[1].EvalReal(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
if b == 0 {
return 0, true, errors.Trace(handleDivisionByZeroError(s.ctx))
}
a, isNull, err := s.args[0].EvalReal(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
return math.Mod(a, b), false, nil
}
type builtinArithmeticModDecimalSig struct {
baseBuiltinFunc
}
func (s *builtinArithmeticModDecimalSig) evalDecimal(row types.Row) (*types.MyDecimal, bool, error) {
a, isNull, err := s.args[0].EvalDecimal(s.ctx, row)
if isNull || err != nil {
return nil, isNull, errors.Trace(err)
}
b, isNull, err := s.args[1].EvalDecimal(s.ctx, row)
if isNull || err != nil {
return nil, isNull, errors.Trace(err)
}
c := &types.MyDecimal{}
err = types.DecimalMod(a, b, c)
if err == types.ErrDivByZero {
return c, true, errors.Trace(handleDivisionByZeroError(s.ctx))
}
return c, err != nil, errors.Trace(err)
}
type builtinArithmeticModIntSig struct {
baseBuiltinFunc
}
func (s *builtinArithmeticModIntSig) evalInt(row types.Row) (val int64, isNull bool, err error) {
b, isNull, err := s.args[1].EvalInt(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
if b == 0 {
return 0, true, errors.Trace(handleDivisionByZeroError(s.ctx))
}
a, isNull, err := s.args[0].EvalInt(s.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
var ret int64
isLHSUnsigned := mysql.HasUnsignedFlag(s.args[0].GetType().Flag)
isRHSUnsigned := mysql.HasUnsignedFlag(s.args[1].GetType().Flag)
switch {
case isLHSUnsigned && isRHSUnsigned:
ret = int64(uint64(a) % uint64(b))
case isLHSUnsigned && !isRHSUnsigned:
if b < 0 {
ret = int64(uint64(a) % uint64(-b))
} else {
ret = int64(uint64(a) % uint64(b))
}
case !isLHSUnsigned && isRHSUnsigned:
if a < 0 {
ret = -int64(uint64(-a) % uint64(b))
} else {
ret = int64(uint64(a) % uint64(b))
}
case !isLHSUnsigned && !isRHSUnsigned:
ret = a % b
}
return ret, false, nil
}