forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datum.go
2375 lines (2059 loc) · 62.3 KB
/
datum.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
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2015 The Cockroach Authors.
//
// 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.
//
// Author: Peter Mattis (peter@cockroachlabs.com)
package parser
import (
"bytes"
"fmt"
"math"
"math/big"
"regexp"
"sort"
"strconv"
"strings"
"time"
"unicode"
"unsafe"
"github.com/lib/pq/oid"
"github.com/pkg/errors"
"golang.org/x/text/collate"
"golang.org/x/text/language"
"github.com/cockroachdb/apd"
"github.com/cockroachdb/cockroach/pkg/roachpb"
"github.com/cockroachdb/cockroach/pkg/util/duration"
)
var (
constDBoolTrue DBool = true
constDBoolFalse DBool = false
// DBoolTrue is a pointer to the DBool(true) value and can be used in
// comparisons against Datum types.
DBoolTrue = &constDBoolTrue
// DBoolFalse is a pointer to the DBool(false) value and can be used in
// comparisons against Datum types.
DBoolFalse = &constDBoolFalse
// DNull is the NULL Datum.
DNull Datum = dNull{}
// DZero is the zero-valued integer Datum.
DZero = NewDInt(0)
)
// Datum represents a SQL value.
type Datum interface {
TypedExpr
// AmbiguousFormat indicates whether the result of formatting this Datum can
// be interpreted into more than one type. Used with
// fmtFlags.disambiguateDatumTypes.
AmbiguousFormat() bool
// Compare returns -1 if the receiver is less than other, 0 if receiver is
// equal to other and +1 if receiver is greater than other.
Compare(ctx *EvalContext, other Datum) int
// Prev returns the previous datum and true, if one exists, or nil and false.
// The previous datum satisfies the following definition: if the receiver is
// "b" and the returned datum is "a", then for every compatible datum "x", it
// holds that "x < b" is true if and only if "x <= a" is true.
//
// The return value is undefined if IsMin() returns true.
//
// TODO(#12022): for DTuple, the contract is actually that "x < b" (SQL order,
// where NULL < x is unknown for all x) is true only if "x <= a"
// (.Compare/encoding order, where NULL <= x is true for all x) is true. This
// is okay for now: the returned datum is used only to construct a span, which
// uses .Compare/encoding order and is guaranteed to be large enough by this
// weaker contract. The original filter expression is left in place to catch
// false positives.
Prev() (Datum, bool)
// IsMin returns true if the datum is equal to the minimum value the datum
// type can hold.
IsMin() bool
// Next returns the next datum and true, if one exists, or nil and false
// otherwise. The next datum satisfies the following definition: if the
// receiver is "a" and the returned datum is "b", then for every compatible
// datum "x", it holds that "x > a" is true if and only if "x >= b" is true.
//
// The return value is undefined if IsMax() returns true.
//
// TODO(#12022): for DTuple, the contract is actually that "x > a" (SQL order,
// where x > NULL is unknown for all x) is true only if "x >= b"
// (.Compare/encoding order, where x >= NULL is true for all x) is true. This
// is okay for now: the returned datum is used only to construct a span, which
// uses .Compare/encoding order and is guaranteed to be large enough by this
// weaker contract. The original filter expression is left in place to catch
// false positives.
Next() (Datum, bool)
// IsMax returns true if the datum is equal to the maximum value the datum
// type can hold.
IsMax() bool
// max() returns the upper value and true, if one exists, otherwise
// nil and false. Used By Prev().
max() (Datum, bool)
// min() returns the lower value, if one exists, otherwise nil and
// false. Used by Next().
min() (Datum, bool)
// Size returns a lower bound on the total size of the receiver in bytes,
// including memory that is pointed at (even if shared between Datum
// instances) but excluding allocation overhead.
//
// It holds for every Datum d that d.Size() >= d.ResolvedType().Size().
Size() uintptr
}
// Datums is a slice of Datum values.
type Datums []Datum
// Len returns the number of Datum values.
func (d Datums) Len() int { return len(d) }
// Reverse reverses the order of the Datum values.
func (d Datums) Reverse() {
for i, j := 0, d.Len()-1; i < j; i, j = i+1, j-1 {
d[i], d[j] = d[j], d[i]
}
}
// Format implements the NodeFormatter interface.
func (d Datums) Format(buf *bytes.Buffer, f FmtFlags) {
buf.WriteByte('(')
for i, v := range d {
if i > 0 {
buf.WriteString(", ")
}
FormatNode(buf, f, v)
}
buf.WriteByte(')')
}
// CompositeDatum is a Datum that may require composite encoding in
// indexes. Any Datum implementing this interface must also add itself to
// sqlbase/HasCompositeKeyEncoding.
type CompositeDatum interface {
Datum
// IsComposite returns true if this datum is not round-tripable in a key
// encoding.
IsComposite() bool
}
// DBool is the boolean Datum.
type DBool bool
// MakeDBool converts its argument to a *DBool, returning either DBoolTrue or
// DBoolFalse.
func MakeDBool(d DBool) *DBool {
if d {
return DBoolTrue
}
return DBoolFalse
}
// makeParseError returns a parse error using the provided string and type. An
// optional error can be provided, which will be appended to the end of the
// error string.
func makeParseError(s string, typ Type, err error) error {
var suffix string
if err != nil {
suffix = fmt.Sprintf(": %v", err)
}
return fmt.Errorf("could not parse '%s' as type %s%s", s, typ, suffix)
}
func makeUnsupportedComparisonMessage(d1, d2 Datum) string {
return fmt.Sprintf("unsupported comparison: %s to %s", d1.ResolvedType(), d2.ResolvedType())
}
// ParseDBool parses and returns the *DBool Datum value represented by the provided
// string, or an error if parsing is unsuccessful.
func ParseDBool(s string) (*DBool, error) {
// TODO(pmattis): strconv.ParseBool is more permissive than the SQL
// spec. Is that ok?
b, err := strconv.ParseBool(s)
if err != nil {
return nil, makeParseError(s, TypeBool, err)
}
return MakeDBool(DBool(b)), nil
}
// GetBool gets DBool or an error (also treats NULL as false, not an error).
func GetBool(d Datum) (DBool, error) {
if v, ok := d.(*DBool); ok {
return *v, nil
}
if d == DNull {
return DBool(false), nil
}
return false, fmt.Errorf("cannot convert %s to type %s", d.ResolvedType(), TypeBool)
}
// ResolvedType implements the TypedExpr interface.
func (*DBool) ResolvedType() Type {
return TypeBool
}
// Compare implements the Datum interface.
func (d *DBool) Compare(ctx *EvalContext, other Datum) int {
if other == DNull {
// NULL is less than any non-NULL value.
return 1
}
v, ok := other.(*DBool)
if !ok {
panic(makeUnsupportedComparisonMessage(d, other))
}
if !*d && *v {
return -1
}
if *d && !*v {
return 1
}
return 0
}
// Prev implements the Datum interface.
func (*DBool) Prev() (Datum, bool) {
return DBoolFalse, true
}
// Next implements the Datum interface.
func (*DBool) Next() (Datum, bool) {
return DBoolTrue, true
}
// IsMax implements the Datum interface.
func (d *DBool) IsMax() bool {
return bool(*d)
}
// IsMin implements the Datum interface.
func (d *DBool) IsMin() bool {
return !bool(*d)
}
// min implements the Datum interface.
func (d *DBool) min() (Datum, bool) {
return DBoolFalse, true
}
// max implements the Datum interface.
func (d *DBool) max() (Datum, bool) {
return DBoolTrue, true
}
// AmbiguousFormat implements the Datum interface.
func (*DBool) AmbiguousFormat() bool { return false }
// Format implements the NodeFormatter interface.
func (d *DBool) Format(buf *bytes.Buffer, f FmtFlags) {
buf.WriteString(strconv.FormatBool(bool(*d)))
}
// Size implements the Datum interface.
func (d *DBool) Size() uintptr {
return unsafe.Sizeof(*d)
}
// DInt is the int Datum.
type DInt int64
// NewDInt is a helper routine to create a *DInt initialized from its argument.
func NewDInt(d DInt) *DInt {
return &d
}
// ParseDInt parses and returns the *DInt Datum value represented by the provided
// string, or an error if parsing is unsuccessful.
func ParseDInt(s string) (*DInt, error) {
i, err := strconv.ParseInt(s, 0, 64)
if err != nil {
return nil, makeParseError(s, TypeInt, err)
}
return NewDInt(DInt(i)), nil
}
// AsDInt attempts to retrieve a DInt from an Expr, returning a DInt and
// a flag signifying whether the assertion was successful. The function should
// be used instead of direct type assertions wherever a *DInt wrapped by a
// *DOidWrapper is possible.
func AsDInt(e Expr) (DInt, bool) {
switch t := e.(type) {
case *DInt:
return *t, true
case *DOidWrapper:
return AsDInt(t.Wrapped)
}
return 0, false
}
// MustBeDInt attempts to retrieve a DInt from an Expr, panicking if the
// assertion fails.
func MustBeDInt(e Expr) DInt {
i, ok := AsDInt(e)
if !ok {
panic(fmt.Errorf("expected *DInt, found %T", e))
}
return i
}
// ResolvedType implements the TypedExpr interface.
func (*DInt) ResolvedType() Type {
return TypeInt
}
// Compare implements the Datum interface.
func (d *DInt) Compare(ctx *EvalContext, other Datum) int {
if other == DNull {
// NULL is less than any non-NULL value.
return 1
}
var v DInt
switch t := UnwrapDatum(other).(type) {
case *DInt:
v = *t
case *DFloat, *DDecimal:
return -t.Compare(ctx, d)
default:
panic(makeUnsupportedComparisonMessage(d, other))
}
if *d < v {
return -1
}
if *d > v {
return 1
}
return 0
}
// Prev implements the Datum interface.
func (d *DInt) Prev() (Datum, bool) {
return NewDInt(*d - 1), true
}
// Next implements the Datum interface.
func (d *DInt) Next() (Datum, bool) {
return NewDInt(*d + 1), true
}
// IsMax implements the Datum interface.
func (d *DInt) IsMax() bool {
return *d == math.MaxInt64
}
// IsMin implements the Datum interface.
func (d *DInt) IsMin() bool {
return *d == math.MinInt64
}
var dMaxInt = NewDInt(math.MaxInt64)
var dMinInt = NewDInt(math.MinInt64)
// max implements the Datum interface.
func (d *DInt) max() (Datum, bool) {
return dMaxInt, true
}
// min implements the Datum interface.
func (d *DInt) min() (Datum, bool) {
return dMinInt, true
}
// AmbiguousFormat implements the Datum interface.
func (*DInt) AmbiguousFormat() bool { return true }
// Format implements the NodeFormatter interface.
func (d *DInt) Format(buf *bytes.Buffer, f FmtFlags) {
buf.WriteString(strconv.FormatInt(int64(*d), 10))
}
// Size implements the Datum interface.
func (d *DInt) Size() uintptr {
return unsafe.Sizeof(*d)
}
// DFloat is the float Datum.
type DFloat float64
// NewDFloat is a helper routine to create a *DFloat initialized from its
// argument.
func NewDFloat(d DFloat) *DFloat {
return &d
}
// ParseDFloat parses and returns the *DFloat Datum value represented by the provided
// string, or an error if parsing is unsuccessful.
func ParseDFloat(s string) (*DFloat, error) {
f, err := strconv.ParseFloat(s, 64)
if err != nil {
return nil, makeParseError(s, TypeFloat, err)
}
return NewDFloat(DFloat(f)), nil
}
// ResolvedType implements the TypedExpr interface.
func (*DFloat) ResolvedType() Type {
return TypeFloat
}
// Compare implements the Datum interface.
func (d *DFloat) Compare(ctx *EvalContext, other Datum) int {
if other == DNull {
// NULL is less than any non-NULL value.
return 1
}
var v DFloat
switch t := UnwrapDatum(other).(type) {
case *DFloat:
v = *t
case *DInt:
v = DFloat(MustBeDInt(t))
case *DDecimal:
return -t.Compare(ctx, d)
default:
panic(makeUnsupportedComparisonMessage(d, other))
}
if *d < v {
return -1
}
if *d > v {
return 1
}
// NaN sorts before non-NaN (#10109).
if *d == v {
return 0
}
if math.IsNaN(float64(*d)) {
if math.IsNaN(float64(v)) {
return 0
}
return -1
}
return 1
}
// Prev implements the Datum interface.
func (d *DFloat) Prev() (Datum, bool) {
return NewDFloat(DFloat(math.Nextafter(float64(*d), math.Inf(-1)))), true
}
// Next implements the Datum interface.
func (d *DFloat) Next() (Datum, bool) {
return NewDFloat(DFloat(math.Nextafter(float64(*d), math.Inf(1)))), true
}
var dMaxFloat = NewDFloat(DFloat(math.Inf(1)))
var dMinFloat = NewDFloat(DFloat(math.Inf(-1)))
// IsMax implements the Datum interface.
func (d *DFloat) IsMax() bool {
return *d == *dMaxFloat
}
// IsMin implements the Datum interface.
func (d *DFloat) IsMin() bool {
return *d == *dMinFloat
}
// max implements the Datum interface.
func (d *DFloat) max() (Datum, bool) {
return dMaxFloat, true
}
// min implements the Datum interface.
func (d *DFloat) min() (Datum, bool) {
return dMinFloat, true
}
// AmbiguousFormat implements the Datum interface.
func (*DFloat) AmbiguousFormat() bool { return true }
// Format implements the NodeFormatter interface.
func (d *DFloat) Format(buf *bytes.Buffer, f FmtFlags) {
fl := float64(*d)
if _, frac := math.Modf(fl); frac == 0 && -1000000 < *d && *d < 1000000 {
// d is a small whole number. Ensure it is printed using a decimal point.
fmt.Fprintf(buf, "%.1f", fl)
} else {
fmt.Fprintf(buf, "%g", fl)
}
}
// Size implements the Datum interface.
func (d *DFloat) Size() uintptr {
return unsafe.Sizeof(*d)
}
// IsComposite implements the CompositeDatum interface.
func (d *DFloat) IsComposite() bool {
// -0 is composite.
return math.Float64bits(float64(*d)) == 1<<63
}
// DDecimal is the decimal Datum.
type DDecimal struct {
apd.Decimal
}
// ParseDDecimal parses and returns the *DDecimal Datum value represented by the
// provided string, or an error if parsing is unsuccessful.
func ParseDDecimal(s string) (*DDecimal, error) {
dd := &DDecimal{}
err := dd.SetString(s)
return dd, err
}
// SetString sets d to s. Any non-standard NaN values are converted to a
// normal NaN.
func (d *DDecimal) SetString(s string) error {
// Using HighPrecisionCtx here restricts the max and min exponents to 2000,
// and the precision to 2000 places. Any rounding or other inexact conversion
// will result in an error.
_, res, err := HighPrecisionCtx.SetString(&d.Decimal, s)
if res != 0 || err != nil {
return makeParseError(s, TypeDecimal, nil)
}
if d.Decimal.Form == apd.NaNSignaling {
d.Decimal.Form = apd.NaN
}
if d.Decimal.Form == apd.NaN {
d.Negative = false
}
return nil
}
// ResolvedType implements the TypedExpr interface.
func (*DDecimal) ResolvedType() Type {
return TypeDecimal
}
// Compare implements the Datum interface.
func (d *DDecimal) Compare(ctx *EvalContext, other Datum) int {
if other == DNull {
// NULL is less than any non-NULL value.
return 1
}
v := ctx.getTmpDec()
switch t := UnwrapDatum(other).(type) {
case *DDecimal:
v = &t.Decimal
case *DInt:
v.SetCoefficient(int64(*t)).SetExponent(0)
case *DFloat:
if _, err := v.SetFloat64(float64(*t)); err != nil {
panic(err)
}
default:
panic(makeUnsupportedComparisonMessage(d, other))
}
// NaNs sort first in SQL.
if dn, vn := d.Form == apd.NaN, v.Form == apd.NaN; dn && !vn {
return -1
} else if !dn && vn {
return 1
} else if dn && vn {
return 0
}
return d.Cmp(v)
}
// Prev implements the Datum interface.
func (d *DDecimal) Prev() (Datum, bool) {
return nil, false
}
// Next implements the Datum interface.
func (d *DDecimal) Next() (Datum, bool) {
return nil, false
}
// IsMax implements the Datum interface.
func (*DDecimal) IsMax() bool {
return false
}
// IsMin implements the Datum interface.
func (*DDecimal) IsMin() bool {
return false
}
// max implements the Datum interface.
func (d *DDecimal) max() (Datum, bool) {
return nil, false
}
// min implements the Datum interface.
func (d *DDecimal) min() (Datum, bool) {
return nil, false
}
// AmbiguousFormat implements the Datum interface.
func (*DDecimal) AmbiguousFormat() bool { return true }
// Format implements the NodeFormatter interface.
func (d *DDecimal) Format(buf *bytes.Buffer, f FmtFlags) {
quote := f.disambiguateDatumTypes && d.Decimal.Form != apd.Finite
if quote {
buf.WriteByte('\'')
}
buf.WriteString(d.Decimal.ToStandard())
if quote {
buf.WriteString(`'::DECIMAL`)
}
}
// Size implements the Datum interface.
func (d *DDecimal) Size() uintptr {
intVal := d.Decimal.Coeff
return unsafe.Sizeof(*d) + uintptr(cap(intVal.Bits()))*unsafe.Sizeof(big.Word(0))
}
var (
decimalNegativeZero = &apd.Decimal{Negative: true}
bigTen = big.NewInt(10)
)
// IsComposite implements the CompositeDatum interface.
func (d *DDecimal) IsComposite() bool {
// -0 is composite.
if d.Decimal.CmpTotal(decimalNegativeZero) == 0 {
return true
}
// Check if d is divisible by 10.
var r big.Int
r.Rem(&d.Decimal.Coeff, bigTen)
return r.Sign() == 0
}
// DString is the string Datum.
type DString string
// NewDString is a helper routine to create a *DString initialized from its
// argument.
func NewDString(d string) *DString {
r := DString(d)
return &r
}
// AsDString attempts to retrieve a DString from an Expr, returning a DString and
// a flag signifying whether the assertion was successful. The function should
// be used instead of direct type assertions wherever a *DString wrapped by a
// *DOidWrapper is possible.
func AsDString(e Expr) (DString, bool) {
switch t := e.(type) {
case *DString:
return *t, true
case *DOidWrapper:
return AsDString(t.Wrapped)
}
return "", false
}
// MustBeDString attempts to retrieve a DString from an Expr, panicking if the
// assertion fails.
func MustBeDString(e Expr) DString {
i, ok := AsDString(e)
if !ok {
panic(fmt.Errorf("expected *DString, found %T", e))
}
return i
}
// ResolvedType implements the TypedExpr interface.
func (*DString) ResolvedType() Type {
return TypeString
}
// Compare implements the Datum interface.
func (d *DString) Compare(ctx *EvalContext, other Datum) int {
if other == DNull {
// NULL is less than any non-NULL value.
return 1
}
v, ok := AsDString(other)
if !ok {
panic(makeUnsupportedComparisonMessage(d, other))
}
if *d < v {
return -1
}
if *d > v {
return 1
}
return 0
}
// Prev implements the Datum interface.
func (d *DString) Prev() (Datum, bool) {
return nil, false
}
// Next implements the Datum interface.
func (d *DString) Next() (Datum, bool) {
return NewDString(string(roachpb.Key(*d).Next())), true
}
// IsMax implements the Datum interface.
func (*DString) IsMax() bool {
return false
}
// IsMin implements the Datum interface.
func (d *DString) IsMin() bool {
return len(*d) == 0
}
var dEmptyString = NewDString("")
// min implements the Datum interface.
func (d *DString) min() (Datum, bool) {
return dEmptyString, true
}
// max implements the Datum interface.
func (d *DString) max() (Datum, bool) {
return nil, false
}
// AmbiguousFormat implements the Datum interface.
func (*DString) AmbiguousFormat() bool { return true }
// Format implements the NodeFormatter interface.
func (d *DString) Format(buf *bytes.Buffer, f FmtFlags) {
encodeSQLStringWithFlags(buf, string(*d), f)
}
// Size implements the Datum interface.
func (d *DString) Size() uintptr {
return unsafe.Sizeof(*d) + uintptr(len(*d))
}
// DCollatedString is the Datum for strings with a locale. The struct members
// are intended to be immutable.
type DCollatedString struct {
Contents string
Locale string
// Key is the collation key.
Key []byte
}
// CollationEnvironment stores the state needed by NewDCollatedString to
// construct collation keys efficiently.
type CollationEnvironment struct {
cache map[string]collationEnvironmentCacheEntry
buffer collate.Buffer
}
type collationEnvironmentCacheEntry struct {
// locale is interned.
locale string
// collator is an expensive factory.
collator *collate.Collator
}
func (env *CollationEnvironment) getCacheEntry(locale string) collationEnvironmentCacheEntry {
entry, ok := env.cache[locale]
if !ok {
if env.cache == nil {
env.cache = make(map[string]collationEnvironmentCacheEntry)
}
entry = collationEnvironmentCacheEntry{locale, collate.New(language.MustParse(locale))}
env.cache[locale] = entry
}
return entry
}
// NewDCollatedString is a helper routine to create a *DCollatedString. Panics
// if locale is invalid. Not safe for concurrent use.
func NewDCollatedString(
contents string, locale string, env *CollationEnvironment,
) *DCollatedString {
entry := env.getCacheEntry(locale)
key := entry.collator.KeyFromString(&env.buffer, contents)
d := DCollatedString{contents, entry.locale, make([]byte, len(key))}
copy(d.Key, key)
env.buffer.Reset()
return &d
}
// AmbiguousFormat implements the Datum interface.
func (*DCollatedString) AmbiguousFormat() bool { return false }
// Format implements the NodeFormatter interface.
func (d *DCollatedString) Format(buf *bytes.Buffer, f FmtFlags) {
encodeSQLString(buf, d.Contents)
buf.WriteString(" COLLATE ")
encodeSQLIdent(buf, d.Locale)
}
// ResolvedType implements the TypedExpr interface.
func (d *DCollatedString) ResolvedType() Type {
return TCollatedString{d.Locale}
}
// Compare implements the Datum interface.
func (d *DCollatedString) Compare(ctx *EvalContext, other Datum) int {
if other == DNull {
// NULL is less than any non-NULL value.
return 1
}
v, ok := other.(*DCollatedString)
if !ok || d.Locale != v.Locale {
panic(makeUnsupportedComparisonMessage(d, other))
}
return bytes.Compare(d.Key, v.Key)
}
// Prev implements the Datum interface.
func (d *DCollatedString) Prev() (Datum, bool) {
return nil, false
}
// Next implements the Datum interface.
func (d *DCollatedString) Next() (Datum, bool) {
return nil, false
}
// IsMax implements the Datum interface.
func (*DCollatedString) IsMax() bool {
return false
}
// IsMin implements the Datum interface.
func (d *DCollatedString) IsMin() bool {
return d.Contents == ""
}
// min implements the Datum interface.
func (d *DCollatedString) min() (Datum, bool) {
return &DCollatedString{"", d.Locale, nil}, true
}
// max implements the Datum interface.
func (d *DCollatedString) max() (Datum, bool) {
return nil, false
}
// Size implements the Datum interface.
func (d *DCollatedString) Size() uintptr {
return unsafe.Sizeof(*d) + uintptr(len(d.Contents)) + uintptr(len(d.Locale)) + uintptr(len(d.Key))
}
// IsComposite implements the CompositeDatum interface.
func (d *DCollatedString) IsComposite() bool {
return true
}
// DBytes is the bytes Datum. The underlying type is a string because we want
// the immutability, but this may contain arbitrary bytes.
type DBytes string
// NewDBytes is a helper routine to create a *DBytes initialized from its
// argument.
func NewDBytes(d DBytes) *DBytes {
return &d
}
// ResolvedType implements the TypedExpr interface.
func (*DBytes) ResolvedType() Type {
return TypeBytes
}
// Compare implements the Datum interface.
func (d *DBytes) Compare(ctx *EvalContext, other Datum) int {
if other == DNull {
// NULL is less than any non-NULL value.
return 1
}
v, ok := other.(*DBytes)
if !ok {
panic(makeUnsupportedComparisonMessage(d, other))
}
if *d < *v {
return -1
}
if *d > *v {
return 1
}
return 0
}
// Prev implements the Datum interface.
func (d *DBytes) Prev() (Datum, bool) {
return nil, false
}
// Next implements the Datum interface.
func (d *DBytes) Next() (Datum, bool) {
return NewDBytes(DBytes(roachpb.Key(*d).Next())), true
}
// IsMax implements the Datum interface.
func (*DBytes) IsMax() bool {
return false
}
// IsMin implements the Datum interface.
func (d *DBytes) IsMin() bool {
return len(*d) == 0
}
var dEmptyBytes = NewDBytes(DBytes(""))
// min implements the Datum interface.
func (d *DBytes) min() (Datum, bool) {
return dEmptyBytes, true
}
// max implements the Datum interface.
func (d *DBytes) max() (Datum, bool) {
return nil, false
}
// AmbiguousFormat implements the Datum interface.
func (*DBytes) AmbiguousFormat() bool { return false }
// Format implements the NodeFormatter interface.
func (d *DBytes) Format(buf *bytes.Buffer, f FmtFlags) {
encodeSQLBytes(buf, string(*d))
}
// Size implements the Datum interface.
func (d *DBytes) Size() uintptr {
return unsafe.Sizeof(*d) + uintptr(len(*d))
}
// DDate is the date Datum represented as the number of days after
// the Unix epoch.
type DDate int64
// NewDDate is a helper routine to create a *DDate initialized from its
// argument.
func NewDDate(d DDate) *DDate {
return &d
}
// NewDDateFromTime constructs a *DDate from a time.Time in the provided time zone.
func NewDDateFromTime(t time.Time, loc *time.Location) *DDate {
year, month, day := t.In(loc).Date()
secs := time.Date(year, month, day, 0, 0, 0, 0, time.UTC).Unix()
return NewDDate(DDate(secs / secondsInDay))
}
// ParseDDate parses and returns the *DDate Datum value represented by the provided
// string in the provided location, or an error if parsing is unsuccessful.
func ParseDDate(s string, loc *time.Location) (*DDate, error) {
// No need to ParseInLocation here because we're only parsing dates.
t, err := parseTimestampInLocation(s, time.UTC, TypeDate)
if err != nil {
return nil, err
}
return NewDDateFromTime(t, loc), nil
}
// ResolvedType implements the TypedExpr interface.
func (*DDate) ResolvedType() Type {
return TypeDate
}
// Compare implements the Datum interface.
func (d *DDate) Compare(ctx *EvalContext, other Datum) int {
if other == DNull {
// NULL is less than any non-NULL value.
return 1
}
var v DDate
switch t := other.(type) {
case *DDate:
v = *t
case *DTimestamp, *DTimestampTZ:
return compareTimestamps(ctx, d, other)
default:
panic(makeUnsupportedComparisonMessage(d, other))
}
if *d < v {
return -1