forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
type.go
665 lines (576 loc) · 22.4 KB
/
type.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
// 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: Tamir Duberstein (tamird@gmail.com)
package parser
import (
"bytes"
"fmt"
"unsafe"
"github.com/lib/pq/oid"
)
// Type represents a SQL type.
type Type interface {
fmt.Stringer
// Equivalent returns whether the receiver and the other type are equivalent.
// We say that two type patterns are "equivalent" when they are structurally
// equivalent given that a wildcard is equivalent to any type. When neither
// Type is ambiguous (see IsAmbiguous), equivalency is the same as type equality.
Equivalent(other Type) bool
// FamilyEqual returns whether the receiver and the other type have the same
// constructor.
FamilyEqual(other Type) bool
// Oid returns the type's Postgres object ID.
Oid() oid.Oid
// SQLName returns the type's SQL standard name. This can be looked up for a
// type `t` in postgres by running `SELECT format_type(t::regtype, NULL)`.
SQLName() string
// Size returns a lower bound on the total size of a Datum whose type is the
// receiver in bytes, including memory that is pointed at (even if shared
// between Datum instances) but excluding allocation overhead.
//
// The second argument indicates whether data of this type have different
// sizes.
//
// It holds for every Datum d that d.Size() >= d.ResolvedType().Size().
Size() (uintptr, bool)
// IsAmbiguous returns whether the type is ambiguous or fully defined. This
// is important for parameterized types to determine whether they are fully
// concrete type specification or not.
IsAmbiguous() bool
}
const (
fixedSize = false
variableSize = true
)
var (
// TypeNull is the type of a DNull. Can be compared with ==.
TypeNull Type = tNull{}
// TypeBool is the type of a DBool. Can be compared with ==.
TypeBool Type = tBool{}
// TypeInt is the type of a DInt. Can be compared with ==.
TypeInt Type = tInt{}
// TypeFloat is the type of a DFloat. Can be compared with ==.
TypeFloat Type = tFloat{}
// TypeDecimal is the type of a DDecimal. Can be compared with ==.
TypeDecimal Type = tDecimal{}
// TypeString is the type of a DString. Can be compared with ==.
TypeString Type = tString{}
// TypeCollatedString is the type family of a DString. CANNOT be compared with
// ==.
TypeCollatedString Type = TCollatedString{}
// TypeBytes is the type of a DBytes. Can be compared with ==.
TypeBytes Type = tBytes{}
// TypeDate is the type of a DDate. Can be compared with ==.
TypeDate Type = tDate{}
// TypeTimestamp is the type of a DTimestamp. Can be compared with ==.
TypeTimestamp Type = tTimestamp{}
// TypeTimestampTZ is the type of a DTimestampTZ. Can be compared with ==.
TypeTimestampTZ Type = tTimestampTZ{}
// TypeInterval is the type of a DInterval. Can be compared with ==.
TypeInterval Type = tInterval{}
// TypeTuple is the type family of a DTuple. CANNOT be compared with ==.
TypeTuple Type = TTuple(nil)
// TypeTable is the type family of a DTable. CANNOT be compared with ==.
TypeTable Type = TTable{}
// TypePlaceholder is the type family of a placeholder. CANNOT be compared
// with ==.
TypePlaceholder Type = TPlaceholder{}
// TypeStringArray is the type family of a DArray containing strings. Can be
// compared with ==.
TypeStringArray Type = TArray{TypeString}
// TypeIntArray is the type family of a DArray containing ints. Can be
// compared with ==.
TypeIntArray Type = TArray{TypeInt}
// TypeAnyArray is the type of a DArray with a wildcard parameterized type.
// Can be compared with ==.
TypeAnyArray Type = TArray{TypeAny}
// TypeAny can be any type. Can be compared with ==.
TypeAny Type = tAny{}
// TypeOid is the type of an OID. Can be compared with ==.
TypeOid = tOid{oid.T_oid}
// TypeRegClass is the type of an regclass OID variant. Can be compared with ==.
TypeRegClass = tOid{oid.T_regclass}
// TypeRegNamespace is the type of an regnamespace OID variant. Can be compared with ==.
TypeRegNamespace = tOid{oid.T_regnamespace}
// TypeRegProc is the type of an regproc OID variant. Can be compared with ==.
TypeRegProc = tOid{oid.T_regproc}
// TypeRegProcedure is the type of an regprocedure OID variant. Can be compared with ==.
TypeRegProcedure = tOid{oid.T_regprocedure}
// TypeRegType is the type of an regtype OID variant. Can be compared with ==.
TypeRegType = tOid{oid.T_regtype}
// TypeName is a type-alias for TypeString with a different OID. Can be
// compared with ==.
TypeName = wrapTypeWithOid(TypeString, oid.T_name)
// TypeIntVector is a type-alias for a TypeIntArray with a different OID. Can
// be compared with ==.
TypeIntVector = wrapTypeWithOid(TypeIntArray, oid.T_int2vector)
// TypeNameArray is the type family of a DArray containing the Name alias type.
// Can be compared with ==.
TypeNameArray Type = TArray{TypeName}
// TypesAnyNonArray contains all non-array types.
TypesAnyNonArray = []Type{
TypeBool,
TypeInt,
TypeFloat,
TypeDecimal,
TypeString,
TypeBytes,
TypeDate,
TypeTimestamp,
TypeTimestampTZ,
TypeInterval,
TypeOid,
}
)
var (
// Unexported wrapper types. These exist for Postgres type compatibility.
typeInt2 = wrapTypeWithOid(TypeInt, oid.T_int2)
typeInt4 = wrapTypeWithOid(TypeInt, oid.T_int4)
typeFloat4 = wrapTypeWithOid(TypeFloat, oid.T_float4)
typeVarChar = wrapTypeWithOid(TypeString, oid.T_varchar)
typeInt2Array = TArray{typeInt2}
typeInt4Array = TArray{typeInt4}
)
// OidToType maps Postgres object IDs to CockroachDB types.
var OidToType = map[oid.Oid]Type{
oid.T_anyelement: TypeAny,
oid.T_bool: TypeBool,
oid.T_bytea: TypeBytes,
oid.T_date: TypeDate,
oid.T_float4: typeFloat4,
oid.T_float8: TypeFloat,
oid.T_int2: typeInt2,
oid.T_int4: typeInt4,
oid.T_int8: TypeInt,
oid.T_int2vector: TypeIntVector,
oid.T_interval: TypeInterval,
oid.T_name: TypeName,
oid.T_numeric: TypeDecimal,
oid.T_oid: TypeOid,
oid.T_regclass: TypeRegClass,
oid.T_regnamespace: TypeRegNamespace,
oid.T_regproc: TypeRegProc,
oid.T_regprocedure: TypeRegProcedure,
oid.T_regtype: TypeRegType,
oid.T__text: TypeStringArray,
oid.T__int2: typeInt2Array,
oid.T__int4: typeInt4Array,
oid.T__int8: TypeIntArray,
oid.T_record: TypeTuple,
oid.T_text: TypeString,
oid.T_timestamp: TypeTimestamp,
oid.T_timestamptz: TypeTimestampTZ,
oid.T_varchar: typeVarChar,
}
// AliasedOidToName maps Postgres object IDs to type names for those OIDs that map to
// Cockroach types that have more than one associated OID, like Int. The name
// for these OIDs will override the type name of the corresponding type when
// looking up the display name for an OID.
var aliasedOidToName = map[oid.Oid]string{
oid.T_float4: "float4",
oid.T_float8: "float8",
oid.T_int2: "int2",
oid.T_int4: "int4",
oid.T_int8: "int8",
oid.T_int2vector: "int2vector",
oid.T_text: "text",
oid.T_bytea: "bytea",
oid.T_varchar: "varchar",
oid.T_numeric: "numeric",
oid.T_record: "record",
oid.T__int2: "_int2",
oid.T__int4: "_int4",
oid.T__int8: "_int8",
oid.T__text: "_text",
}
// PGDisplayName returns the Postgres display name for a given type.
func PGDisplayName(typ Type) string {
if typname, ok := aliasedOidToName[typ.Oid()]; ok {
return typname
}
return typ.String()
}
// Do not instantiate the tXxx types elsewhere. The variables above are intended
// to be singletons.
type tNull struct{}
func (tNull) String() string { return "NULL" }
func (tNull) Equivalent(other Type) bool { return other == TypeNull || other == TypeAny }
func (tNull) FamilyEqual(other Type) bool { return other == TypeNull }
func (tNull) Size() (uintptr, bool) { return unsafe.Sizeof(dNull{}), fixedSize }
func (tNull) Oid() oid.Oid { return oid.T_unknown }
func (tNull) SQLName() string { return "unknown" }
func (tNull) IsAmbiguous() bool { return true }
type tBool struct{}
func (tBool) String() string { return "bool" }
func (tBool) Equivalent(other Type) bool { return UnwrapType(other) == TypeBool || other == TypeAny }
func (tBool) FamilyEqual(other Type) bool { return UnwrapType(other) == TypeBool }
func (tBool) Size() (uintptr, bool) { return unsafe.Sizeof(DBool(false)), fixedSize }
func (tBool) Oid() oid.Oid { return oid.T_bool }
func (tBool) SQLName() string { return "boolean" }
func (tBool) IsAmbiguous() bool { return false }
type tInt struct{}
func (tInt) String() string { return "int" }
func (tInt) Equivalent(other Type) bool { return UnwrapType(other) == TypeInt || other == TypeAny }
func (tInt) FamilyEqual(other Type) bool { return UnwrapType(other) == TypeInt }
func (tInt) Size() (uintptr, bool) { return unsafe.Sizeof(DInt(0)), fixedSize }
func (tInt) Oid() oid.Oid { return oid.T_int8 }
func (tInt) SQLName() string { return "bigint" }
func (tInt) IsAmbiguous() bool { return false }
type tFloat struct{}
func (tFloat) String() string { return "float" }
func (tFloat) Equivalent(other Type) bool { return UnwrapType(other) == TypeFloat || other == TypeAny }
func (tFloat) FamilyEqual(other Type) bool { return UnwrapType(other) == TypeFloat }
func (tFloat) Size() (uintptr, bool) { return unsafe.Sizeof(DFloat(0.0)), fixedSize }
func (tFloat) Oid() oid.Oid { return oid.T_float8 }
func (tFloat) SQLName() string { return "double precision" }
func (tFloat) IsAmbiguous() bool { return false }
type tDecimal struct{}
func (tDecimal) String() string { return "decimal" }
func (tDecimal) Equivalent(other Type) bool {
return UnwrapType(other) == TypeDecimal || other == TypeAny
}
func (tDecimal) FamilyEqual(other Type) bool { return UnwrapType(other) == TypeDecimal }
func (tDecimal) Size() (uintptr, bool) { return unsafe.Sizeof(DDecimal{}), variableSize }
func (tDecimal) Oid() oid.Oid { return oid.T_numeric }
func (tDecimal) SQLName() string { return "numeric" }
func (tDecimal) IsAmbiguous() bool { return false }
type tString struct{}
func (tString) String() string { return "string" }
func (tString) Equivalent(other Type) bool { return UnwrapType(other) == TypeString || other == TypeAny }
func (tString) FamilyEqual(other Type) bool { return UnwrapType(other) == TypeString }
func (tString) Size() (uintptr, bool) { return unsafe.Sizeof(DString("")), variableSize }
func (tString) Oid() oid.Oid { return oid.T_text }
func (tString) SQLName() string { return "text" }
func (tString) IsAmbiguous() bool { return false }
// TCollatedString is the type of strings with a locale.
type TCollatedString struct {
Locale string
}
// String implements the fmt.Stringer interface.
func (t TCollatedString) String() string {
return fmt.Sprintf("collatedstring{%s}", t.Locale)
}
// Equivalent implements the Type interface.
func (t TCollatedString) Equivalent(other Type) bool {
if other == TypeAny {
return true
}
u, ok := UnwrapType(other).(TCollatedString)
if ok {
return t.Locale == "" || u.Locale == "" || t.Locale == u.Locale
}
return false
}
// FamilyEqual implements the Type interface.
func (TCollatedString) FamilyEqual(other Type) bool {
_, ok := UnwrapType(other).(TCollatedString)
return ok
}
// Size implements the Type interface.
func (TCollatedString) Size() (uintptr, bool) {
return unsafe.Sizeof(DCollatedString{"", "", nil}), variableSize
}
// Oid implements the Type interface.
func (TCollatedString) Oid() oid.Oid { return oid.T_unknown }
// SQLName implements the Type interface.
func (TCollatedString) SQLName() string { return "text" }
// IsAmbiguous implements the Type interface.
func (t TCollatedString) IsAmbiguous() bool {
return t.Locale == ""
}
type tBytes struct{}
func (tBytes) String() string { return "bytes" }
func (tBytes) Equivalent(other Type) bool { return UnwrapType(other) == TypeBytes || other == TypeAny }
func (tBytes) FamilyEqual(other Type) bool { return UnwrapType(other) == TypeBytes }
func (tBytes) Size() (uintptr, bool) { return unsafe.Sizeof(DBytes("")), variableSize }
func (tBytes) Oid() oid.Oid { return oid.T_bytea }
func (tBytes) SQLName() string { return "bytea" }
func (tBytes) IsAmbiguous() bool { return false }
type tDate struct{}
func (tDate) String() string { return "date" }
func (tDate) Equivalent(other Type) bool { return UnwrapType(other) == TypeDate || other == TypeAny }
func (tDate) FamilyEqual(other Type) bool { return UnwrapType(other) == TypeDate }
func (tDate) Size() (uintptr, bool) { return unsafe.Sizeof(DDate(0)), fixedSize }
func (tDate) Oid() oid.Oid { return oid.T_date }
func (tDate) SQLName() string { return "date" }
func (tDate) IsAmbiguous() bool { return false }
type tTimestamp struct{}
func (tTimestamp) String() string { return "timestamp" }
func (tTimestamp) Equivalent(other Type) bool {
return UnwrapType(other) == TypeTimestamp || other == TypeAny
}
func (tTimestamp) FamilyEqual(other Type) bool { return UnwrapType(other) == TypeTimestamp }
func (tTimestamp) Size() (uintptr, bool) { return unsafe.Sizeof(DTimestamp{}), fixedSize }
func (tTimestamp) Oid() oid.Oid { return oid.T_timestamp }
func (tTimestamp) SQLName() string { return "timestamp without time zone" }
func (tTimestamp) IsAmbiguous() bool { return false }
type tTimestampTZ struct{}
func (tTimestampTZ) String() string { return "timestamptz" }
func (tTimestampTZ) Equivalent(other Type) bool {
return UnwrapType(other) == TypeTimestampTZ || other == TypeAny
}
func (tTimestampTZ) FamilyEqual(other Type) bool { return UnwrapType(other) == TypeTimestampTZ }
func (tTimestampTZ) Size() (uintptr, bool) { return unsafe.Sizeof(DTimestampTZ{}), fixedSize }
func (tTimestampTZ) Oid() oid.Oid { return oid.T_timestamptz }
func (tTimestampTZ) SQLName() string { return "timestamp with time zone" }
func (tTimestampTZ) IsAmbiguous() bool { return false }
type tInterval struct{}
func (tInterval) String() string { return "interval" }
func (tInterval) Equivalent(other Type) bool {
return UnwrapType(other) == TypeInterval || other == TypeAny
}
func (tInterval) FamilyEqual(other Type) bool { return UnwrapType(other) == TypeInterval }
func (tInterval) Size() (uintptr, bool) { return unsafe.Sizeof(DInterval{}), fixedSize }
func (tInterval) Oid() oid.Oid { return oid.T_interval }
func (tInterval) SQLName() string { return "interval" }
func (tInterval) IsAmbiguous() bool { return false }
// TTuple is the type of a DTuple.
type TTuple []Type
// String implements the fmt.Stringer interface.
func (t TTuple) String() string {
var buf bytes.Buffer
buf.WriteString("tuple")
if t != nil {
buf.WriteByte('{')
for i, typ := range t {
if i != 0 {
buf.WriteString(", ")
}
buf.WriteString(typ.String())
}
buf.WriteByte('}')
}
return buf.String()
}
// Equivalent implements the Type interface.
func (t TTuple) Equivalent(other Type) bool {
if other == TypeAny {
return true
}
u, ok := UnwrapType(other).(TTuple)
if !ok || len(t) != len(u) {
return false
}
for i, typ := range t {
if !typ.Equivalent(u[i]) {
return false
}
}
return true
}
// FamilyEqual implements the Type interface.
func (TTuple) FamilyEqual(other Type) bool {
_, ok := UnwrapType(other).(TTuple)
return ok
}
// Size implements the Type interface.
func (t TTuple) Size() (uintptr, bool) {
sz := uintptr(0)
variable := false
for _, typ := range t {
typsz, typvariable := typ.Size()
sz += typsz
variable = variable || typvariable
}
return sz, variable
}
// Oid implements the Type interface.
func (TTuple) Oid() oid.Oid { return oid.T_record }
// SQLName implements the Type interface.
func (TTuple) SQLName() string { return "record" }
// IsAmbiguous implements the Type interface.
func (t TTuple) IsAmbiguous() bool {
for _, typ := range t {
if typ == nil || typ.IsAmbiguous() {
return true
}
}
return false
}
// TPlaceholder is the type of a placeholder.
type TPlaceholder struct {
Name string
}
// String implements the fmt.Stringer interface.
func (t TPlaceholder) String() string { return fmt.Sprintf("placeholder{%s}", t.Name) }
// Equivalent implements the Type interface.
func (t TPlaceholder) Equivalent(other Type) bool {
if other == TypeAny {
return true
}
u, ok := UnwrapType(other).(TPlaceholder)
return ok && t.Name == u.Name
}
// FamilyEqual implements the Type interface.
func (TPlaceholder) FamilyEqual(other Type) bool {
_, ok := UnwrapType(other).(TPlaceholder)
return ok
}
// Size implements the Type interface.
func (TPlaceholder) Size() (uintptr, bool) { panic("TPlaceholder.Size() is undefined") }
// Oid implements the Type interface.
func (TPlaceholder) Oid() oid.Oid { panic("TPlaceholder.Oid() is undefined") }
// SQLName implements the Type interface.
func (TPlaceholder) SQLName() string { panic("TPlaceholder.SQLName() is undefined") }
// IsAmbiguous implements the Type interface.
func (TPlaceholder) IsAmbiguous() bool { panic("TPlaceholder.IsAmbiguous() is undefined") }
// TArray is the type of a DArray.
type TArray struct{ Typ Type }
func (a TArray) String() string { return a.Typ.String() + "[]" }
// Equivalent implements the Type interface.
func (a TArray) Equivalent(other Type) bool {
if other == TypeAny {
return true
}
if u, ok := UnwrapType(other).(TArray); ok {
return a.Typ.Equivalent(u.Typ)
}
return false
}
// FamilyEqual implements the Type interface.
func (TArray) FamilyEqual(other Type) bool {
_, ok := UnwrapType(other).(TArray)
return ok
}
// Size implements the Type interface.
func (TArray) Size() (uintptr, bool) {
return unsafe.Sizeof(DString("")), variableSize
}
// oidToArrayOid maps scalar type Oids to their corresponding array type Oid.
var oidToArrayOid = map[oid.Oid]oid.Oid{
oid.T_int2: oid.T__int2,
oid.T_int4: oid.T__int4,
oid.T_int8: oid.T__int8,
oid.T_text: oid.T__text,
oid.T_name: oid.T__name,
}
// Oid implements the Type interface.
func (a TArray) Oid() oid.Oid {
if o, ok := oidToArrayOid[a.Typ.Oid()]; ok {
return o
}
return oid.T_anyarray
}
// SQLName implements the Type interface.
func (a TArray) SQLName() string {
return a.Typ.SQLName() + "[]"
}
// IsAmbiguous implements the Type interface.
func (a TArray) IsAmbiguous() bool {
return a.Typ == nil || a.Typ.IsAmbiguous()
}
// TTable is the type of a DTable.
// See the comments at the start of generator_builtins.go for details.
type TTable struct{ Cols TTuple }
func (a TTable) String() string { return "setof " + a.Cols.String() }
// Equivalent implements the Type interface.
func (a TTable) Equivalent(other Type) bool {
if u, ok := UnwrapType(other).(TTable); ok {
return a.Cols.Equivalent(u.Cols)
}
return false
}
// FamilyEqual implements the Type interface.
func (TTable) FamilyEqual(other Type) bool {
_, ok := UnwrapType(other).(TTable)
return ok
}
// Size implements the Type interface.
func (a TTable) Size() (uintptr, bool) {
sz, _ := a.Cols.Size()
return sz, variableSize
}
// Oid implements the Type interface.
func (TTable) Oid() oid.Oid { return oid.T_anyelement }
// SQLName implements the Type interface.
func (TTable) SQLName() string { return "anyelement" }
// IsAmbiguous implements the Type interface.
func (a TTable) IsAmbiguous() bool {
return a.Cols == nil || a.Cols.IsAmbiguous()
}
type tAny struct{}
func (tAny) String() string { return "anyelement" }
func (tAny) Equivalent(other Type) bool { return true }
func (tAny) FamilyEqual(other Type) bool { return other == TypeAny }
func (tAny) Size() (uintptr, bool) { return unsafe.Sizeof(DString("")), variableSize }
func (tAny) Oid() oid.Oid { return oid.T_anyelement }
func (tAny) SQLName() string { return "anyelement" }
func (tAny) IsAmbiguous() bool { return true }
type tOid struct {
oidType oid.Oid
}
func (t tOid) String() string { return t.SQLName() }
func (t tOid) Equivalent(other Type) bool { return t.FamilyEqual(other) || other == TypeAny }
func (tOid) FamilyEqual(other Type) bool { _, ok := UnwrapType(other).(tOid); return ok }
func (tOid) Size() (uintptr, bool) { return unsafe.Sizeof(DInt(0)), fixedSize }
func (t tOid) Oid() oid.Oid { return t.oidType }
func (t tOid) SQLName() string {
switch t.oidType {
case oid.T_oid:
return "oid"
case oid.T_regclass:
return "regclass"
case oid.T_regnamespace:
return "regnamespace"
case oid.T_regproc:
return "regproc"
case oid.T_regprocedure:
return "regprocedure"
case oid.T_regtype:
return "regtype"
default:
panic(fmt.Sprintf("unexpected oidType: %v", t.oidType))
}
}
func (tOid) IsAmbiguous() bool { return false }
// tOidWrapper is a Type implementation which is a wrapper around a Type, allowing
// custom Oid values to be attached to the Type. The Type is used by DOidWrapper
// to permit type aliasing with custom Oids without needing to create new typing
// rules or define new Datum types.
type tOidWrapper struct {
Type
oid oid.Oid
}
var customOidNames = map[oid.Oid]string{
oid.T_name: "name",
}
func (t tOidWrapper) String() string {
// Allow custom type names for specific Oids, but default to wrapped String.
if s, ok := customOidNames[t.oid]; ok {
return s
}
return t.Type.String()
}
func (t tOidWrapper) Oid() oid.Oid { return t.oid }
// wrapTypeWithOid wraps a Type with a custom Oid.
func wrapTypeWithOid(t Type, oid oid.Oid) Type {
switch v := t.(type) {
case tNull, tAny, tOidWrapper:
panic(fmt.Errorf("cannot wrap %T with an Oid", v))
}
return tOidWrapper{
Type: t,
oid: oid,
}
}
// UnwrapType returns the base Type type for a provided type, stripping
// a *TOidWrapper if present. This is useful for cases like type switches,
// where type aliases should be ignored.
func UnwrapType(t Type) Type {
if w, ok := t.(tOidWrapper); ok {
return w.Type
}
return t
}