table.go
35.0 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
package orm
import (
"database/sql"
"encoding/json"
"fmt"
"net"
"reflect"
"strconv"
"strings"
"sync"
"time"
"github.com/jinzhu/inflection"
"github.com/vmihailenco/tagparser"
"github.com/go-pg/pg/v10/internal"
"github.com/go-pg/pg/v10/internal/pool"
"github.com/go-pg/pg/v10/pgjson"
"github.com/go-pg/pg/v10/types"
"github.com/go-pg/zerochecker"
)
const (
beforeScanHookFlag = uint16(1) << iota
afterScanHookFlag
afterSelectHookFlag
beforeInsertHookFlag
afterInsertHookFlag
beforeUpdateHookFlag
afterUpdateHookFlag
beforeDeleteHookFlag
afterDeleteHookFlag
discardUnknownColumnsFlag
)
var (
timeType = reflect.TypeOf((*time.Time)(nil)).Elem()
nullTimeType = reflect.TypeOf((*types.NullTime)(nil)).Elem()
sqlNullTimeType = reflect.TypeOf((*sql.NullTime)(nil)).Elem()
ipType = reflect.TypeOf((*net.IP)(nil)).Elem()
ipNetType = reflect.TypeOf((*net.IPNet)(nil)).Elem()
scannerType = reflect.TypeOf((*sql.Scanner)(nil)).Elem()
nullBoolType = reflect.TypeOf((*sql.NullBool)(nil)).Elem()
nullFloatType = reflect.TypeOf((*sql.NullFloat64)(nil)).Elem()
nullIntType = reflect.TypeOf((*sql.NullInt64)(nil)).Elem()
nullStringType = reflect.TypeOf((*sql.NullString)(nil)).Elem()
jsonRawMessageType = reflect.TypeOf((*json.RawMessage)(nil)).Elem()
)
var tableNameInflector = inflection.Plural
// SetTableNameInflector overrides the default func that pluralizes
// model name to get table name, e.g. my_article becomes my_articles.
func SetTableNameInflector(fn func(string) string) {
tableNameInflector = fn
}
// Table represents a SQL table created from Go struct.
type Table struct {
Type reflect.Type
zeroStruct reflect.Value
TypeName string
Alias types.Safe
ModelName string
SQLName types.Safe
SQLNameForSelects types.Safe
Tablespace types.Safe
PartitionBy string
allFields []*Field // read only
skippedFields []*Field
Fields []*Field // PKs + DataFields
PKs []*Field
DataFields []*Field
fieldsMapMu sync.RWMutex
FieldsMap map[string]*Field
Methods map[string]*Method
Relations map[string]*Relation
Unique map[string][]*Field
SoftDeleteField *Field
SetSoftDeleteField func(fv reflect.Value) error
flags uint16
}
func newTable(typ reflect.Type) *Table {
t := new(Table)
t.Type = typ
t.zeroStruct = reflect.New(t.Type).Elem()
t.TypeName = internal.ToExported(t.Type.Name())
t.ModelName = internal.Underscore(t.Type.Name())
tableName := tableNameInflector(t.ModelName)
t.setName(quoteIdent(tableName))
t.Alias = quoteIdent(t.ModelName)
typ = reflect.PtrTo(t.Type)
if typ.Implements(beforeScanHookType) {
t.setFlag(beforeScanHookFlag)
}
if typ.Implements(afterScanHookType) {
t.setFlag(afterScanHookFlag)
}
if typ.Implements(afterSelectHookType) {
t.setFlag(afterSelectHookFlag)
}
if typ.Implements(beforeInsertHookType) {
t.setFlag(beforeInsertHookFlag)
}
if typ.Implements(afterInsertHookType) {
t.setFlag(afterInsertHookFlag)
}
if typ.Implements(beforeUpdateHookType) {
t.setFlag(beforeUpdateHookFlag)
}
if typ.Implements(afterUpdateHookType) {
t.setFlag(afterUpdateHookFlag)
}
if typ.Implements(beforeDeleteHookType) {
t.setFlag(beforeDeleteHookFlag)
}
if typ.Implements(afterDeleteHookType) {
t.setFlag(afterDeleteHookFlag)
}
return t
}
func (t *Table) init1() {
t.initFields()
t.initMethods()
}
func (t *Table) init2() {
t.initInlines()
t.initRelations()
t.skippedFields = nil
}
func (t *Table) setName(name types.Safe) {
t.SQLName = name
t.SQLNameForSelects = name
if t.Alias == "" {
t.Alias = name
}
}
func (t *Table) String() string {
return "model=" + t.TypeName
}
func (t *Table) setFlag(flag uint16) {
t.flags |= flag
}
func (t *Table) hasFlag(flag uint16) bool {
if t == nil {
return false
}
return t.flags&flag != 0
}
func (t *Table) checkPKs() error {
if len(t.PKs) == 0 {
return fmt.Errorf("pg: %s does not have primary keys", t)
}
return nil
}
func (t *Table) mustSoftDelete() error {
if t.SoftDeleteField == nil {
return fmt.Errorf("pg: %s does not support soft deletes", t)
}
return nil
}
func (t *Table) AddField(field *Field) {
t.Fields = append(t.Fields, field)
if field.hasFlag(PrimaryKeyFlag) {
t.PKs = append(t.PKs, field)
} else {
t.DataFields = append(t.DataFields, field)
}
t.FieldsMap[field.SQLName] = field
}
func (t *Table) RemoveField(field *Field) {
t.Fields = removeField(t.Fields, field)
if field.hasFlag(PrimaryKeyFlag) {
t.PKs = removeField(t.PKs, field)
} else {
t.DataFields = removeField(t.DataFields, field)
}
delete(t.FieldsMap, field.SQLName)
}
func removeField(fields []*Field, field *Field) []*Field {
for i, f := range fields {
if f == field {
fields = append(fields[:i], fields[i+1:]...)
}
}
return fields
}
func (t *Table) getField(name string) *Field {
t.fieldsMapMu.RLock()
field := t.FieldsMap[name]
t.fieldsMapMu.RUnlock()
return field
}
func (t *Table) HasField(name string) bool {
_, ok := t.FieldsMap[name]
return ok
}
func (t *Table) GetField(name string) (*Field, error) {
field, ok := t.FieldsMap[name]
if !ok {
return nil, fmt.Errorf("pg: %s does not have column=%s", t, name)
}
return field, nil
}
func (t *Table) AppendParam(b []byte, strct reflect.Value, name string) ([]byte, bool) {
field, ok := t.FieldsMap[name]
if ok {
b = field.AppendValue(b, strct, 1)
return b, true
}
method, ok := t.Methods[name]
if ok {
b = method.AppendValue(b, strct.Addr(), 1)
return b, true
}
return b, false
}
func (t *Table) initFields() {
t.Fields = make([]*Field, 0, t.Type.NumField())
t.FieldsMap = make(map[string]*Field, t.Type.NumField())
t.addFields(t.Type, nil)
}
func (t *Table) addFields(typ reflect.Type, baseIndex []int) {
for i := 0; i < typ.NumField(); i++ {
f := typ.Field(i)
// Make a copy so slice is not shared between fields.
index := make([]int, len(baseIndex))
copy(index, baseIndex)
if f.Anonymous {
if f.Tag.Get("sql") == "-" || f.Tag.Get("pg") == "-" {
continue
}
fieldType := indirectType(f.Type)
if fieldType.Kind() != reflect.Struct {
continue
}
t.addFields(fieldType, append(index, f.Index...))
pgTag := tagparser.Parse(f.Tag.Get("pg"))
if _, inherit := pgTag.Options["inherit"]; inherit {
embeddedTable := _tables.get(fieldType, true)
t.TypeName = embeddedTable.TypeName
t.SQLName = embeddedTable.SQLName
t.SQLNameForSelects = embeddedTable.SQLNameForSelects
t.Alias = embeddedTable.Alias
t.ModelName = embeddedTable.ModelName
}
continue
}
field := t.newField(f, index)
if field != nil {
t.AddField(field)
}
}
}
//nolint
func (t *Table) newField(f reflect.StructField, index []int) *Field {
pgTag := tagparser.Parse(f.Tag.Get("pg"))
switch f.Name {
case "tableName":
if len(index) > 0 {
return nil
}
if isKnownTableOption(pgTag.Name) {
internal.Warn.Printf(
"%s.%s tag name %q is also an option name; is it a mistake?",
t.TypeName, f.Name, pgTag.Name,
)
}
for name := range pgTag.Options {
if !isKnownTableOption(name) {
internal.Warn.Printf("%s.%s has unknown tag option: %q", t.TypeName, f.Name, name)
}
}
if tableSpace, ok := pgTag.Options["tablespace"]; ok {
s, _ := tagparser.Unquote(tableSpace)
t.Tablespace = quoteIdent(s)
}
partitionBy, ok := pgTag.Options["partition_by"]
if !ok {
partitionBy, ok = pgTag.Options["partitionBy"]
if ok {
internal.Deprecated.Printf("partitionBy is renamed to partition_by")
}
}
if ok {
s, _ := tagparser.Unquote(partitionBy)
t.PartitionBy = s
}
if pgTag.Name == "_" {
t.setName("")
} else if pgTag.Name != "" {
s, _ := tagparser.Unquote(pgTag.Name)
t.setName(types.Safe(quoteTableName(s)))
}
if s, ok := pgTag.Options["select"]; ok {
s, _ = tagparser.Unquote(s)
t.SQLNameForSelects = types.Safe(quoteTableName(s))
}
if v, ok := pgTag.Options["alias"]; ok {
v, _ = tagparser.Unquote(v)
t.Alias = quoteIdent(v)
}
pgTag := tagparser.Parse(f.Tag.Get("pg"))
if _, ok := pgTag.Options["discard_unknown_columns"]; ok {
t.setFlag(discardUnknownColumnsFlag)
}
return nil
}
if f.PkgPath != "" {
return nil
}
sqlName := internal.Underscore(f.Name)
if pgTag.Name != sqlName && isKnownFieldOption(pgTag.Name) {
internal.Warn.Printf(
"%s.%s tag name %q is also an option name; is it a mistake?",
t.TypeName, f.Name, pgTag.Name,
)
}
for name := range pgTag.Options {
if !isKnownFieldOption(name) {
internal.Warn.Printf("%s.%s has unknown tag option: %q", t.TypeName, f.Name, name)
}
}
skip := pgTag.Name == "-"
if !skip && pgTag.Name != "" {
sqlName = pgTag.Name
}
index = append(index, f.Index...)
if field := t.getField(sqlName); field != nil {
if indexEqual(field.Index, index) {
return field
}
t.RemoveField(field)
}
field := &Field{
Field: f,
Type: indirectType(f.Type),
GoName: f.Name,
SQLName: sqlName,
Column: quoteIdent(sqlName),
Index: index,
}
if _, ok := pgTag.Options["notnull"]; ok {
field.setFlag(NotNullFlag)
}
if v, ok := pgTag.Options["unique"]; ok {
if v == "" {
field.setFlag(UniqueFlag)
}
// Split the value by comma, this will allow multiple names to be specified.
// We can use this to create multiple named unique constraints where a single column
// might be included in multiple constraints.
v, _ = tagparser.Unquote(v)
for _, uniqueName := range strings.Split(v, ",") {
if t.Unique == nil {
t.Unique = make(map[string][]*Field)
}
t.Unique[uniqueName] = append(t.Unique[uniqueName], field)
}
}
if v, ok := pgTag.Options["default"]; ok {
v, ok = tagparser.Unquote(v)
if ok {
field.Default = types.Safe(types.AppendString(nil, v, 1))
} else {
field.Default = types.Safe(v)
}
}
//nolint
if _, ok := pgTag.Options["pk"]; ok {
field.setFlag(PrimaryKeyFlag)
} else if strings.HasSuffix(field.SQLName, "_id") ||
strings.HasSuffix(field.SQLName, "_uuid") {
field.setFlag(ForeignKeyFlag)
} else if strings.HasPrefix(field.SQLName, "fk_") {
field.setFlag(ForeignKeyFlag)
} else if len(t.PKs) == 0 && !pgTag.HasOption("nopk") {
switch field.SQLName {
case "id", "uuid", "pk_" + t.ModelName:
field.setFlag(PrimaryKeyFlag)
}
}
if _, ok := pgTag.Options["use_zero"]; ok {
field.setFlag(UseZeroFlag)
}
if _, ok := pgTag.Options["array"]; ok {
field.setFlag(ArrayFlag)
}
field.SQLType = fieldSQLType(field, pgTag)
if strings.HasSuffix(field.SQLType, "[]") {
field.setFlag(ArrayFlag)
}
if v, ok := pgTag.Options["on_delete"]; ok {
field.OnDelete = v
}
if v, ok := pgTag.Options["on_update"]; ok {
field.OnUpdate = v
}
if _, ok := pgTag.Options["composite"]; ok {
field.append = compositeAppender(f.Type)
field.scan = compositeScanner(f.Type)
} else if _, ok := pgTag.Options["json_use_number"]; ok {
field.append = types.Appender(f.Type)
field.scan = scanJSONValue
} else if field.hasFlag(ArrayFlag) {
field.append = types.ArrayAppender(f.Type)
field.scan = types.ArrayScanner(f.Type)
} else if _, ok := pgTag.Options["hstore"]; ok {
field.append = types.HstoreAppender(f.Type)
field.scan = types.HstoreScanner(f.Type)
} else if field.SQLType == pgTypeBigint && field.Type.Kind() == reflect.Uint64 {
if f.Type.Kind() == reflect.Ptr {
field.append = appendUintPtrAsInt
} else {
field.append = appendUintAsInt
}
field.scan = types.Scanner(f.Type)
} else if _, ok := pgTag.Options["msgpack"]; ok {
field.append = msgpackAppender(f.Type)
field.scan = msgpackScanner(f.Type)
} else {
field.append = types.Appender(f.Type)
field.scan = types.Scanner(f.Type)
}
field.isZero = zerochecker.Checker(f.Type)
if v, ok := pgTag.Options["alias"]; ok {
v, _ = tagparser.Unquote(v)
t.FieldsMap[v] = field
}
t.allFields = append(t.allFields, field)
if skip {
t.skippedFields = append(t.skippedFields, field)
t.FieldsMap[field.SQLName] = field
return nil
}
if _, ok := pgTag.Options["soft_delete"]; ok {
t.SetSoftDeleteField = setSoftDeleteFieldFunc(f.Type)
if t.SetSoftDeleteField == nil {
err := fmt.Errorf(
"pg: soft_delete is only supported for time.Time, pg.NullTime, sql.NullInt64, and int64 (or implement ValueScanner that scans time)")
panic(err)
}
t.SoftDeleteField = field
}
return field
}
func (t *Table) initMethods() {
t.Methods = make(map[string]*Method)
typ := reflect.PtrTo(t.Type)
for i := 0; i < typ.NumMethod(); i++ {
m := typ.Method(i)
if m.PkgPath != "" {
continue
}
if m.Type.NumIn() > 1 {
continue
}
if m.Type.NumOut() != 1 {
continue
}
retType := m.Type.Out(0)
t.Methods[m.Name] = &Method{
Index: m.Index,
appender: types.Appender(retType),
}
}
}
func (t *Table) initInlines() {
for _, f := range t.skippedFields {
if f.Type.Kind() == reflect.Struct {
t.inlineFields(f, nil)
}
}
}
func (t *Table) initRelations() {
for i := 0; i < len(t.Fields); {
f := t.Fields[i]
if t.tryRelation(f) {
t.Fields = removeField(t.Fields, f)
t.DataFields = removeField(t.DataFields, f)
} else {
i++
}
if f.Type.Kind() == reflect.Struct {
t.inlineFields(f, nil)
}
}
}
func (t *Table) tryRelation(field *Field) bool {
pgTag := tagparser.Parse(field.Field.Tag.Get("pg"))
if rel, ok := pgTag.Options["rel"]; ok {
return t.tryRelationType(field, rel, pgTag)
}
if _, ok := pgTag.Options["many2many"]; ok {
return t.tryRelationType(field, "many2many", pgTag)
}
if field.UserSQLType != "" || isScanner(field.Type) {
return false
}
switch field.Type.Kind() {
case reflect.Slice:
return t.tryRelationSlice(field, pgTag)
case reflect.Struct:
return t.tryRelationStruct(field, pgTag)
}
return false
}
func (t *Table) tryRelationType(field *Field, rel string, pgTag *tagparser.Tag) bool {
switch rel {
case "has-one":
return t.mustHasOneRelation(field, pgTag)
case "belongs-to":
return t.mustBelongsToRelation(field, pgTag)
case "has-many":
return t.mustHasManyRelation(field, pgTag)
case "many2many":
return t.mustM2MRelation(field, pgTag)
default:
panic(fmt.Errorf("pg: unknown relation=%s on field=%s", rel, field.GoName))
}
}
func (t *Table) mustHasOneRelation(field *Field, pgTag *tagparser.Tag) bool {
joinTable := _tables.get(field.Type, true)
if err := joinTable.checkPKs(); err != nil {
panic(err)
}
fkPrefix, fkOK := pgTag.Options["fk"]
if fkOK && len(joinTable.PKs) == 1 {
fk := t.getField(fkPrefix)
if fk == nil {
panic(fmt.Errorf(
"pg: %s has-one %s: %s must have column %s "+
"(use fk:custom_column tag on %s field to specify custom column)",
t.TypeName, field.GoName, t.TypeName, fkPrefix, field.GoName,
))
}
t.addRelation(&Relation{
Type: HasOneRelation,
Field: field,
JoinTable: joinTable,
BaseFKs: []*Field{fk},
JoinFKs: joinTable.PKs,
})
return true
}
if !fkOK {
fkPrefix = internal.Underscore(field.GoName) + "_"
}
fks := make([]*Field, 0, len(joinTable.PKs))
for _, joinPK := range joinTable.PKs {
fkName := fkPrefix + joinPK.SQLName
if fk := t.getField(fkName); fk != nil {
fks = append(fks, fk)
continue
}
if fk := t.getField(joinPK.SQLName); fk != nil {
fks = append(fks, fk)
continue
}
panic(fmt.Errorf(
"pg: %s has-one %s: %s must have column %s "+
"(use fk:custom_column tag on %s field to specify custom column)",
t.TypeName, field.GoName, t.TypeName, fkName, field.GoName,
))
}
t.addRelation(&Relation{
Type: HasOneRelation,
Field: field,
JoinTable: joinTable,
BaseFKs: fks,
JoinFKs: joinTable.PKs,
})
return true
}
func (t *Table) mustBelongsToRelation(field *Field, pgTag *tagparser.Tag) bool {
if err := t.checkPKs(); err != nil {
panic(err)
}
joinTable := _tables.get(field.Type, true)
fkPrefix, fkOK := pgTag.Options["join_fk"]
if fkOK && len(t.PKs) == 1 {
fk := joinTable.getField(fkPrefix)
if fk == nil {
panic(fmt.Errorf(
"pg: %s belongs-to %s: %s must have column %s "+
"(use join_fk:custom_column tag on %s field to specify custom column)",
field.GoName, t.TypeName, joinTable.TypeName, fkPrefix, field.GoName,
))
}
t.addRelation(&Relation{
Type: BelongsToRelation,
Field: field,
JoinTable: joinTable,
BaseFKs: t.PKs,
JoinFKs: []*Field{fk},
})
return true
}
if !fkOK {
fkPrefix = internal.Underscore(t.ModelName) + "_"
}
fks := make([]*Field, 0, len(t.PKs))
for _, pk := range t.PKs {
fkName := fkPrefix + pk.SQLName
if fk := joinTable.getField(fkName); fk != nil {
fks = append(fks, fk)
continue
}
if fk := joinTable.getField(pk.SQLName); fk != nil {
fks = append(fks, fk)
continue
}
panic(fmt.Errorf(
"pg: %s belongs-to %s: %s must have column %s "+
"(use join_fk:custom_column tag on %s field to specify custom column)",
field.GoName, t.TypeName, joinTable.TypeName, fkName, field.GoName,
))
}
t.addRelation(&Relation{
Type: BelongsToRelation,
Field: field,
JoinTable: joinTable,
BaseFKs: t.PKs,
JoinFKs: fks,
})
return true
}
func (t *Table) mustHasManyRelation(field *Field, pgTag *tagparser.Tag) bool {
if err := t.checkPKs(); err != nil {
panic(err)
}
if field.Type.Kind() != reflect.Slice {
panic(fmt.Errorf(
"pg: %s.%s has-many relation requires slice, got %q",
t.TypeName, field.GoName, field.Type.Kind(),
))
}
joinTable := _tables.get(indirectType(field.Type.Elem()), true)
fkPrefix, fkOK := pgTag.Options["join_fk"]
_, polymorphic := pgTag.Options["polymorphic"]
if fkOK && !polymorphic && len(t.PKs) == 1 {
fk := joinTable.getField(fkPrefix)
if fk == nil {
panic(fmt.Errorf(
"pg: %s has-many %s: %s must have column %s "+
"(use join_fk:custom_column tag on %s field to specify custom column)",
t.TypeName, field.GoName, joinTable.TypeName, fkPrefix, field.GoName,
))
}
t.addRelation(&Relation{
Type: HasManyRelation,
Field: field,
JoinTable: joinTable,
BaseFKs: t.PKs,
JoinFKs: []*Field{fk},
})
return true
}
if !fkOK {
fkPrefix = internal.Underscore(t.ModelName) + "_"
}
fks := make([]*Field, 0, len(t.PKs))
for _, pk := range t.PKs {
fkName := fkPrefix + pk.SQLName
if fk := joinTable.getField(fkName); fk != nil {
fks = append(fks, fk)
continue
}
if fk := joinTable.getField(pk.SQLName); fk != nil {
fks = append(fks, fk)
continue
}
panic(fmt.Errorf(
"pg: %s has-many %s: %s must have column %s "+
"(use join_fk:custom_column tag on %s field to specify custom column)",
t.TypeName, field.GoName, joinTable.TypeName, fkName, field.GoName,
))
}
var typeField *Field
if polymorphic {
typeFieldName := fkPrefix + "type"
typeField = joinTable.getField(typeFieldName)
if typeField == nil {
panic(fmt.Errorf(
"pg: %s has-many %s: %s must have polymorphic column %s",
t.TypeName, field.GoName, joinTable.TypeName, typeFieldName,
))
}
}
t.addRelation(&Relation{
Type: HasManyRelation,
Field: field,
JoinTable: joinTable,
BaseFKs: t.PKs,
JoinFKs: fks,
Polymorphic: typeField,
})
return true
}
func (t *Table) mustM2MRelation(field *Field, pgTag *tagparser.Tag) bool {
if field.Type.Kind() != reflect.Slice {
panic(fmt.Errorf(
"pg: %s.%s many2many relation requires slice, got %q",
t.TypeName, field.GoName, field.Type.Kind(),
))
}
joinTable := _tables.get(indirectType(field.Type.Elem()), true)
if err := t.checkPKs(); err != nil {
panic(err)
}
if err := joinTable.checkPKs(); err != nil {
panic(err)
}
m2mTableNameString, ok := pgTag.Options["many2many"]
if !ok {
panic(fmt.Errorf("pg: %s must have many2many tag option", field.GoName))
}
m2mTableName := quoteTableName(m2mTableNameString)
m2mTable := _tables.getByName(m2mTableName)
if m2mTable == nil {
panic(fmt.Errorf(
"pg: can't find %s table (use orm.RegisterTable to register the model)",
m2mTableName,
))
}
var baseFKs []string
var joinFKs []string
{
fkPrefix, ok := pgTag.Options["fk"]
if !ok {
fkPrefix = internal.Underscore(t.ModelName) + "_"
}
if ok && len(t.PKs) == 1 {
if m2mTable.getField(fkPrefix) == nil {
panic(fmt.Errorf(
"pg: %s many2many %s: %s must have column %s "+
"(use fk:custom_column tag on %s field to specify custom column)",
t.TypeName, field.GoName, m2mTable.TypeName, fkPrefix, field.GoName,
))
}
baseFKs = []string{fkPrefix}
} else {
for _, pk := range t.PKs {
fkName := fkPrefix + pk.SQLName
if m2mTable.getField(fkName) != nil {
baseFKs = append(baseFKs, fkName)
continue
}
if m2mTable.getField(pk.SQLName) != nil {
baseFKs = append(baseFKs, pk.SQLName)
continue
}
panic(fmt.Errorf(
"pg: %s many2many %s: %s must have column %s "+
"(use fk:custom_column tag on %s field to specify custom column)",
t.TypeName, field.GoName, m2mTable.TypeName, fkName, field.GoName,
))
}
}
}
{
joinFKPrefix, ok := pgTag.Options["join_fk"]
if !ok {
joinFKPrefix = internal.Underscore(joinTable.ModelName) + "_"
}
if ok && len(joinTable.PKs) == 1 {
if m2mTable.getField(joinFKPrefix) == nil {
panic(fmt.Errorf(
"pg: %s many2many %s: %s must have column %s "+
"(use join_fk:custom_column tag on %s field to specify custom column)",
joinTable.TypeName, field.GoName, m2mTable.TypeName, joinFKPrefix, field.GoName,
))
}
joinFKs = []string{joinFKPrefix}
} else {
for _, joinPK := range joinTable.PKs {
fkName := joinFKPrefix + joinPK.SQLName
if m2mTable.getField(fkName) != nil {
joinFKs = append(joinFKs, fkName)
continue
}
if m2mTable.getField(joinPK.SQLName) != nil {
joinFKs = append(joinFKs, joinPK.SQLName)
continue
}
panic(fmt.Errorf(
"pg: %s many2many %s: %s must have column %s "+
"(use join_fk:custom_column tag on %s field to specify custom column)",
t.TypeName, field.GoName, m2mTable.TypeName, fkName, field.GoName,
))
}
}
}
t.addRelation(&Relation{
Type: Many2ManyRelation,
Field: field,
JoinTable: joinTable,
M2MTableName: m2mTableName,
M2MTableAlias: m2mTable.Alias,
M2MBaseFKs: baseFKs,
M2MJoinFKs: joinFKs,
})
return true
}
//nolint
func (t *Table) tryRelationSlice(field *Field, pgTag *tagparser.Tag) bool {
if t.tryM2MRelation(field, pgTag) {
internal.Deprecated.Printf(
`add pg:"rel:many2many" to %s.%s field tag`, t.TypeName, field.GoName)
return true
}
if t.tryHasManyRelation(field, pgTag) {
internal.Deprecated.Printf(
`add pg:"rel:has-many" to %s.%s field tag`, t.TypeName, field.GoName)
return true
}
return false
}
func (t *Table) tryM2MRelation(field *Field, pgTag *tagparser.Tag) bool {
elemType := indirectType(field.Type.Elem())
if elemType.Kind() != reflect.Struct {
return false
}
joinTable := _tables.get(elemType, true)
fk, fkOK := pgTag.Options["fk"]
if fkOK {
if fk == "-" {
return false
}
fk = tryUnderscorePrefix(fk)
}
m2mTableName := pgTag.Options["many2many"]
if m2mTableName == "" {
return false
}
m2mTable := _tables.getByName(quoteIdent(m2mTableName))
var m2mTableAlias types.Safe
if m2mTable != nil {
m2mTableAlias = m2mTable.Alias
} else if ind := strings.IndexByte(m2mTableName, '.'); ind >= 0 {
m2mTableAlias = quoteIdent(m2mTableName[ind+1:])
} else {
m2mTableAlias = quoteIdent(m2mTableName)
}
var fks []string
if !fkOK {
fk = t.ModelName + "_"
}
if m2mTable != nil {
keys := foreignKeys(t, m2mTable, fk, fkOK)
if len(keys) == 0 {
return false
}
for _, fk := range keys {
fks = append(fks, fk.SQLName)
}
} else {
if fkOK && len(t.PKs) == 1 {
fks = append(fks, fk)
} else {
for _, pk := range t.PKs {
fks = append(fks, fk+pk.SQLName)
}
}
}
joinFK, joinFKOk := pgTag.Options["join_fk"]
if !joinFKOk {
joinFK, joinFKOk = pgTag.Options["joinFK"]
if joinFKOk {
internal.Deprecated.Printf("joinFK is renamed to join_fk")
}
}
if joinFKOk {
joinFK = tryUnderscorePrefix(joinFK)
} else {
joinFK = joinTable.ModelName + "_"
}
var joinFKs []string
if m2mTable != nil {
keys := foreignKeys(joinTable, m2mTable, joinFK, joinFKOk)
if len(keys) == 0 {
return false
}
for _, fk := range keys {
joinFKs = append(joinFKs, fk.SQLName)
}
} else {
if joinFKOk && len(joinTable.PKs) == 1 {
joinFKs = append(joinFKs, joinFK)
} else {
for _, pk := range joinTable.PKs {
joinFKs = append(joinFKs, joinFK+pk.SQLName)
}
}
}
t.addRelation(&Relation{
Type: Many2ManyRelation,
Field: field,
JoinTable: joinTable,
M2MTableName: quoteIdent(m2mTableName),
M2MTableAlias: m2mTableAlias,
M2MBaseFKs: fks,
M2MJoinFKs: joinFKs,
})
return true
}
func (t *Table) tryHasManyRelation(field *Field, pgTag *tagparser.Tag) bool {
elemType := indirectType(field.Type.Elem())
if elemType.Kind() != reflect.Struct {
return false
}
joinTable := _tables.get(elemType, true)
fk, fkOK := pgTag.Options["fk"]
if fkOK {
if fk == "-" {
return false
}
fk = tryUnderscorePrefix(fk)
}
s, polymorphic := pgTag.Options["polymorphic"]
var typeField *Field
if polymorphic {
fk = tryUnderscorePrefix(s)
typeField = joinTable.getField(fk + "type")
if typeField == nil {
return false
}
} else if !fkOK {
fk = t.ModelName + "_"
}
fks := foreignKeys(t, joinTable, fk, fkOK || polymorphic)
if len(fks) == 0 {
return false
}
var fkValues []*Field
fkValue, ok := pgTag.Options["fk_value"]
if ok {
if len(fks) > 1 {
panic(fmt.Errorf("got fk_value, but there are %d fks", len(fks)))
}
f := t.getField(fkValue)
if f == nil {
panic(fmt.Errorf("fk_value=%q not found in %s", fkValue, t))
}
fkValues = append(fkValues, f)
} else {
fkValues = t.PKs
}
if len(fks) != len(fkValues) {
panic("len(fks) != len(fkValues)")
}
if len(fks) > 0 {
t.addRelation(&Relation{
Type: HasManyRelation,
Field: field,
JoinTable: joinTable,
BaseFKs: fkValues,
JoinFKs: fks,
Polymorphic: typeField,
})
return true
}
return false
}
func (t *Table) tryRelationStruct(field *Field, pgTag *tagparser.Tag) bool {
joinTable := _tables.get(field.Type, true)
if len(joinTable.allFields) == 0 {
return false
}
if t.tryHasOne(joinTable, field, pgTag) {
internal.Deprecated.Printf(
`add pg:"rel:has-one" to %s.%s field tag`, t.TypeName, field.GoName)
t.inlineFields(field, nil)
return true
}
if t.tryBelongsToOne(joinTable, field, pgTag) {
internal.Deprecated.Printf(
`add pg:"rel:belongs-to" to %s.%s field tag`, t.TypeName, field.GoName)
t.inlineFields(field, nil)
return true
}
t.inlineFields(field, nil)
return false
}
func (t *Table) inlineFields(strct *Field, path map[reflect.Type]struct{}) {
if path == nil {
path = map[reflect.Type]struct{}{
t.Type: {},
}
}
if _, ok := path[strct.Type]; ok {
return
}
path[strct.Type] = struct{}{}
joinTable := _tables.get(strct.Type, true)
for _, f := range joinTable.allFields {
f = f.Clone()
f.GoName = strct.GoName + "_" + f.GoName
f.SQLName = strct.SQLName + "__" + f.SQLName
f.Column = quoteIdent(f.SQLName)
f.Index = appendNew(strct.Index, f.Index...)
t.fieldsMapMu.Lock()
if _, ok := t.FieldsMap[f.SQLName]; !ok {
t.FieldsMap[f.SQLName] = f
}
t.fieldsMapMu.Unlock()
if f.Type.Kind() != reflect.Struct {
continue
}
if _, ok := path[f.Type]; !ok {
t.inlineFields(f, path)
}
}
}
func appendNew(dst []int, src ...int) []int {
cp := make([]int, len(dst)+len(src))
copy(cp, dst)
copy(cp[len(dst):], src)
return cp
}
func isScanner(typ reflect.Type) bool {
return typ.Implements(scannerType) || reflect.PtrTo(typ).Implements(scannerType)
}
func fieldSQLType(field *Field, pgTag *tagparser.Tag) string {
if typ, ok := pgTag.Options["type"]; ok {
typ, _ = tagparser.Unquote(typ)
field.UserSQLType = typ
typ = normalizeSQLType(typ)
return typ
}
if typ, ok := pgTag.Options["composite"]; ok {
typ, _ = tagparser.Unquote(typ)
return typ
}
if _, ok := pgTag.Options["hstore"]; ok {
return "hstore"
} else if _, ok := pgTag.Options["hstore"]; ok {
return "hstore"
}
if field.hasFlag(ArrayFlag) {
switch field.Type.Kind() {
case reflect.Slice, reflect.Array:
sqlType := sqlType(field.Type.Elem())
return sqlType + "[]"
}
}
sqlType := sqlType(field.Type)
return sqlType
}
func sqlType(typ reflect.Type) string {
switch typ {
case timeType, nullTimeType, sqlNullTimeType:
return pgTypeTimestampTz
case ipType:
return pgTypeInet
case ipNetType:
return pgTypeCidr
case nullBoolType:
return pgTypeBoolean
case nullFloatType:
return pgTypeDoublePrecision
case nullIntType:
return pgTypeBigint
case nullStringType:
return pgTypeText
case jsonRawMessageType:
return pgTypeJSONB
}
switch typ.Kind() {
case reflect.Int8, reflect.Uint8, reflect.Int16:
return pgTypeSmallint
case reflect.Uint16, reflect.Int32:
return pgTypeInteger
case reflect.Uint32, reflect.Int64, reflect.Int:
return pgTypeBigint
case reflect.Uint, reflect.Uint64:
// Unsigned bigint is not supported - use bigint.
return pgTypeBigint
case reflect.Float32:
return pgTypeReal
case reflect.Float64:
return pgTypeDoublePrecision
case reflect.Bool:
return pgTypeBoolean
case reflect.String:
return pgTypeText
case reflect.Map, reflect.Struct:
return pgTypeJSONB
case reflect.Array, reflect.Slice:
if typ.Elem().Kind() == reflect.Uint8 {
return pgTypeBytea
}
return pgTypeJSONB
default:
return typ.Kind().String()
}
}
func normalizeSQLType(s string) string {
switch s {
case "int2":
return pgTypeSmallint
case "int4", "int", "serial":
return pgTypeInteger
case "int8", pgTypeBigserial:
return pgTypeBigint
case "float4":
return pgTypeReal
case "float8":
return pgTypeDoublePrecision
}
return s
}
func sqlTypeEqual(a, b string) bool {
return a == b
}
func (t *Table) tryHasOne(joinTable *Table, field *Field, pgTag *tagparser.Tag) bool {
fk, fkOK := pgTag.Options["fk"]
if fkOK {
if fk == "-" {
return false
}
fk = tryUnderscorePrefix(fk)
} else {
fk = internal.Underscore(field.GoName) + "_"
}
fks := foreignKeys(joinTable, t, fk, fkOK)
if len(fks) > 0 {
t.addRelation(&Relation{
Type: HasOneRelation,
Field: field,
JoinTable: joinTable,
BaseFKs: fks,
JoinFKs: joinTable.PKs,
})
return true
}
return false
}
func (t *Table) tryBelongsToOne(joinTable *Table, field *Field, pgTag *tagparser.Tag) bool {
fk, fkOK := pgTag.Options["fk"]
if fkOK {
if fk == "-" {
return false
}
fk = tryUnderscorePrefix(fk)
} else {
fk = internal.Underscore(t.TypeName) + "_"
}
fks := foreignKeys(t, joinTable, fk, fkOK)
if len(fks) > 0 {
t.addRelation(&Relation{
Type: BelongsToRelation,
Field: field,
JoinTable: joinTable,
BaseFKs: t.PKs,
JoinFKs: fks,
})
return true
}
return false
}
func (t *Table) addRelation(rel *Relation) {
if t.Relations == nil {
t.Relations = make(map[string]*Relation)
}
_, ok := t.Relations[rel.Field.GoName]
if ok {
panic(fmt.Errorf("%s already has %s", t, rel))
}
t.Relations[rel.Field.GoName] = rel
}
func foreignKeys(base, join *Table, fk string, tryFK bool) []*Field {
var fks []*Field
for _, pk := range base.PKs {
fkName := fk + pk.SQLName
f := join.getField(fkName)
if f != nil && sqlTypeEqual(pk.SQLType, f.SQLType) {
fks = append(fks, f)
continue
}
if strings.IndexByte(pk.SQLName, '_') == -1 {
continue
}
f = join.getField(pk.SQLName)
if f != nil && sqlTypeEqual(pk.SQLType, f.SQLType) {
fks = append(fks, f)
continue
}
}
if len(fks) > 0 && len(fks) == len(base.PKs) {
return fks
}
fks = nil
for _, pk := range base.PKs {
if !strings.HasPrefix(pk.SQLName, "pk_") {
continue
}
fkName := "fk_" + pk.SQLName[3:]
f := join.getField(fkName)
if f != nil && sqlTypeEqual(pk.SQLType, f.SQLType) {
fks = append(fks, f)
}
}
if len(fks) > 0 && len(fks) == len(base.PKs) {
return fks
}
if fk == "" || len(base.PKs) != 1 {
return nil
}
if tryFK {
f := join.getField(fk)
if f != nil && sqlTypeEqual(base.PKs[0].SQLType, f.SQLType) {
return []*Field{f}
}
}
for _, suffix := range []string{"id", "uuid"} {
f := join.getField(fk + suffix)
if f != nil && sqlTypeEqual(base.PKs[0].SQLType, f.SQLType) {
return []*Field{f}
}
}
return nil
}
func scanJSONValue(v reflect.Value, rd types.Reader, n int) error {
// Zero value so it works with SelectOrInsert.
// TODO: better handle slices
v.Set(reflect.New(v.Type()).Elem())
if n == -1 {
return nil
}
dec := pgjson.NewDecoder(rd)
dec.UseNumber()
return dec.Decode(v.Addr().Interface())
}
func appendUintAsInt(b []byte, v reflect.Value, _ int) []byte {
return strconv.AppendInt(b, int64(v.Uint()), 10)
}
func appendUintPtrAsInt(b []byte, v reflect.Value, _ int) []byte {
return strconv.AppendInt(b, int64(v.Elem().Uint()), 10)
}
func tryUnderscorePrefix(s string) string {
if s == "" {
return s
}
if c := s[0]; internal.IsUpper(c) {
return internal.Underscore(s) + "_"
}
return s
}
func quoteTableName(s string) types.Safe {
// Don't quote if table name contains placeholder (?) or parentheses.
if strings.IndexByte(s, '?') >= 0 ||
strings.IndexByte(s, '(') >= 0 && strings.IndexByte(s, ')') >= 0 {
return types.Safe(s)
}
return quoteIdent(s)
}
func quoteIdent(s string) types.Safe {
return types.Safe(types.AppendIdent(nil, s, 1))
}
func setSoftDeleteFieldFunc(typ reflect.Type) func(fv reflect.Value) error {
switch typ {
case timeType:
return func(fv reflect.Value) error {
ptr := fv.Addr().Interface().(*time.Time)
*ptr = time.Now()
return nil
}
case nullTimeType:
return func(fv reflect.Value) error {
ptr := fv.Addr().Interface().(*types.NullTime)
*ptr = types.NullTime{Time: time.Now()}
return nil
}
case nullIntType:
return func(fv reflect.Value) error {
ptr := fv.Addr().Interface().(*sql.NullInt64)
*ptr = sql.NullInt64{Int64: time.Now().UnixNano()}
return nil
}
}
switch typ.Kind() {
case reflect.Int64:
return func(fv reflect.Value) error {
ptr := fv.Addr().Interface().(*int64)
*ptr = time.Now().UnixNano()
return nil
}
case reflect.Ptr:
break
default:
return setSoftDeleteFallbackFunc(typ)
}
originalType := typ
typ = typ.Elem()
switch typ { //nolint:gocritic
case timeType:
return func(fv reflect.Value) error {
now := time.Now()
fv.Set(reflect.ValueOf(&now))
return nil
}
}
switch typ.Kind() { //nolint:gocritic
case reflect.Int64:
return func(fv reflect.Value) error {
utime := time.Now().UnixNano()
fv.Set(reflect.ValueOf(&utime))
return nil
}
}
return setSoftDeleteFallbackFunc(originalType)
}
func setSoftDeleteFallbackFunc(typ reflect.Type) func(fv reflect.Value) error {
scanner := types.Scanner(typ)
if scanner == nil {
return nil
}
return func(fv reflect.Value) error {
var flags int
b := types.AppendTime(nil, time.Now(), flags)
return scanner(fv, pool.NewBytesReader(b), len(b))
}
}
func isKnownTableOption(name string) bool {
switch name {
case "alias",
"select",
"tablespace",
"partition_by",
"discard_unknown_columns":
return true
}
return false
}
func isKnownFieldOption(name string) bool {
switch name {
case "alias",
"type",
"array",
"hstore",
"composite",
"json_use_number",
"msgpack",
"notnull",
"use_zero",
"default",
"unique",
"soft_delete",
"on_delete",
"on_update",
"pk",
"nopk",
"rel",
"fk",
"join_fk",
"many2many",
"polymorphic":
return true
}
return false
}