-
Notifications
You must be signed in to change notification settings - Fork 927
/
nickname_listings.go
812 lines (672 loc) · 26.2 KB
/
nickname_listings.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
// Code generated by SQLBoiler 4.5.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT.
// This file is meant to be re-generated in place and/or deleted at any time.
package models
import (
"context"
"database/sql"
"fmt"
"reflect"
"strconv"
"strings"
"sync"
"time"
"github.com/friendsofgo/errors"
"github.com/volatiletech/null/v8"
"github.com/volatiletech/sqlboiler/v4/boil"
"github.com/volatiletech/sqlboiler/v4/queries"
"github.com/volatiletech/sqlboiler/v4/queries/qm"
"github.com/volatiletech/sqlboiler/v4/queries/qmhelper"
"github.com/volatiletech/strmangle"
)
// NicknameListing is an object representing the database table.
type NicknameListing struct {
ID int `boil:"id" json:"id" toml:"id" yaml:"id"`
CreatedAt null.Time `boil:"created_at" json:"created_at,omitempty" toml:"created_at" yaml:"created_at,omitempty"`
UpdatedAt null.Time `boil:"updated_at" json:"updated_at,omitempty" toml:"updated_at" yaml:"updated_at,omitempty"`
DeletedAt null.Time `boil:"deleted_at" json:"deleted_at,omitempty" toml:"deleted_at" yaml:"deleted_at,omitempty"`
UserID null.Int64 `boil:"user_id" json:"user_id,omitempty" toml:"user_id" yaml:"user_id,omitempty"`
GuildID null.String `boil:"guild_id" json:"guild_id,omitempty" toml:"guild_id" yaml:"guild_id,omitempty"`
Nickname null.String `boil:"nickname" json:"nickname,omitempty" toml:"nickname" yaml:"nickname,omitempty"`
R *nicknameListingR `boil:"-" json:"-" toml:"-" yaml:"-"`
L nicknameListingL `boil:"-" json:"-" toml:"-" yaml:"-"`
}
var NicknameListingColumns = struct {
ID string
CreatedAt string
UpdatedAt string
DeletedAt string
UserID string
GuildID string
Nickname string
}{
ID: "id",
CreatedAt: "created_at",
UpdatedAt: "updated_at",
DeletedAt: "deleted_at",
UserID: "user_id",
GuildID: "guild_id",
Nickname: "nickname",
}
// Generated where
type whereHelpernull_Int64 struct{ field string }
func (w whereHelpernull_Int64) EQ(x null.Int64) qm.QueryMod {
return qmhelper.WhereNullEQ(w.field, false, x)
}
func (w whereHelpernull_Int64) NEQ(x null.Int64) qm.QueryMod {
return qmhelper.WhereNullEQ(w.field, true, x)
}
func (w whereHelpernull_Int64) IsNull() qm.QueryMod { return qmhelper.WhereIsNull(w.field) }
func (w whereHelpernull_Int64) IsNotNull() qm.QueryMod { return qmhelper.WhereIsNotNull(w.field) }
func (w whereHelpernull_Int64) LT(x null.Int64) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.LT, x)
}
func (w whereHelpernull_Int64) LTE(x null.Int64) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.LTE, x)
}
func (w whereHelpernull_Int64) GT(x null.Int64) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.GT, x)
}
func (w whereHelpernull_Int64) GTE(x null.Int64) qm.QueryMod {
return qmhelper.Where(w.field, qmhelper.GTE, x)
}
var NicknameListingWhere = struct {
ID whereHelperint
CreatedAt whereHelpernull_Time
UpdatedAt whereHelpernull_Time
DeletedAt whereHelpernull_Time
UserID whereHelpernull_Int64
GuildID whereHelpernull_String
Nickname whereHelpernull_String
}{
ID: whereHelperint{field: "\"nickname_listings\".\"id\""},
CreatedAt: whereHelpernull_Time{field: "\"nickname_listings\".\"created_at\""},
UpdatedAt: whereHelpernull_Time{field: "\"nickname_listings\".\"updated_at\""},
DeletedAt: whereHelpernull_Time{field: "\"nickname_listings\".\"deleted_at\""},
UserID: whereHelpernull_Int64{field: "\"nickname_listings\".\"user_id\""},
GuildID: whereHelpernull_String{field: "\"nickname_listings\".\"guild_id\""},
Nickname: whereHelpernull_String{field: "\"nickname_listings\".\"nickname\""},
}
// NicknameListingRels is where relationship names are stored.
var NicknameListingRels = struct {
}{}
// nicknameListingR is where relationships are stored.
type nicknameListingR struct {
}
// NewStruct creates a new relationship struct
func (*nicknameListingR) NewStruct() *nicknameListingR {
return &nicknameListingR{}
}
// nicknameListingL is where Load methods for each relationship are stored.
type nicknameListingL struct{}
var (
nicknameListingAllColumns = []string{"id", "created_at", "updated_at", "deleted_at", "user_id", "guild_id", "nickname"}
nicknameListingColumnsWithoutDefault = []string{"created_at", "updated_at", "deleted_at", "user_id", "guild_id", "nickname"}
nicknameListingColumnsWithDefault = []string{"id"}
nicknameListingPrimaryKeyColumns = []string{"id"}
)
type (
// NicknameListingSlice is an alias for a slice of pointers to NicknameListing.
// This should generally be used opposed to []NicknameListing.
NicknameListingSlice []*NicknameListing
nicknameListingQuery struct {
*queries.Query
}
)
// Cache for insert, update and upsert
var (
nicknameListingType = reflect.TypeOf(&NicknameListing{})
nicknameListingMapping = queries.MakeStructMapping(nicknameListingType)
nicknameListingPrimaryKeyMapping, _ = queries.BindMapping(nicknameListingType, nicknameListingMapping, nicknameListingPrimaryKeyColumns)
nicknameListingInsertCacheMut sync.RWMutex
nicknameListingInsertCache = make(map[string]insertCache)
nicknameListingUpdateCacheMut sync.RWMutex
nicknameListingUpdateCache = make(map[string]updateCache)
nicknameListingUpsertCacheMut sync.RWMutex
nicknameListingUpsertCache = make(map[string]insertCache)
)
var (
// Force time package dependency for automated UpdatedAt/CreatedAt.
_ = time.Second
// Force qmhelper dependency for where clause generation (which doesn't
// always happen)
_ = qmhelper.Where
)
// OneG returns a single nicknameListing record from the query using the global executor.
func (q nicknameListingQuery) OneG(ctx context.Context) (*NicknameListing, error) {
return q.One(ctx, boil.GetContextDB())
}
// One returns a single nicknameListing record from the query.
func (q nicknameListingQuery) One(ctx context.Context, exec boil.ContextExecutor) (*NicknameListing, error) {
o := &NicknameListing{}
queries.SetLimit(q.Query, 1)
err := q.Bind(ctx, exec, o)
if err != nil {
if errors.Cause(err) == sql.ErrNoRows {
return nil, sql.ErrNoRows
}
return nil, errors.Wrap(err, "models: failed to execute a one query for nickname_listings")
}
return o, nil
}
// AllG returns all NicknameListing records from the query using the global executor.
func (q nicknameListingQuery) AllG(ctx context.Context) (NicknameListingSlice, error) {
return q.All(ctx, boil.GetContextDB())
}
// All returns all NicknameListing records from the query.
func (q nicknameListingQuery) All(ctx context.Context, exec boil.ContextExecutor) (NicknameListingSlice, error) {
var o []*NicknameListing
err := q.Bind(ctx, exec, &o)
if err != nil {
return nil, errors.Wrap(err, "models: failed to assign all query results to NicknameListing slice")
}
return o, nil
}
// CountG returns the count of all NicknameListing records in the query, and panics on error.
func (q nicknameListingQuery) CountG(ctx context.Context) (int64, error) {
return q.Count(ctx, boil.GetContextDB())
}
// Count returns the count of all NicknameListing records in the query.
func (q nicknameListingQuery) Count(ctx context.Context, exec boil.ContextExecutor) (int64, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
err := q.Query.QueryRowContext(ctx, exec).Scan(&count)
if err != nil {
return 0, errors.Wrap(err, "models: failed to count nickname_listings rows")
}
return count, nil
}
// ExistsG checks if the row exists in the table, and panics on error.
func (q nicknameListingQuery) ExistsG(ctx context.Context) (bool, error) {
return q.Exists(ctx, boil.GetContextDB())
}
// Exists checks if the row exists in the table.
func (q nicknameListingQuery) Exists(ctx context.Context, exec boil.ContextExecutor) (bool, error) {
var count int64
queries.SetSelect(q.Query, nil)
queries.SetCount(q.Query)
queries.SetLimit(q.Query, 1)
err := q.Query.QueryRowContext(ctx, exec).Scan(&count)
if err != nil {
return false, errors.Wrap(err, "models: failed to check if nickname_listings exists")
}
return count > 0, nil
}
// NicknameListings retrieves all the records using an executor.
func NicknameListings(mods ...qm.QueryMod) nicknameListingQuery {
mods = append(mods, qm.From("\"nickname_listings\""))
return nicknameListingQuery{NewQuery(mods...)}
}
// FindNicknameListingG retrieves a single record by ID.
func FindNicknameListingG(ctx context.Context, iD int, selectCols ...string) (*NicknameListing, error) {
return FindNicknameListing(ctx, boil.GetContextDB(), iD, selectCols...)
}
// FindNicknameListing retrieves a single record by ID with an executor.
// If selectCols is empty Find will return all columns.
func FindNicknameListing(ctx context.Context, exec boil.ContextExecutor, iD int, selectCols ...string) (*NicknameListing, error) {
nicknameListingObj := &NicknameListing{}
sel := "*"
if len(selectCols) > 0 {
sel = strings.Join(strmangle.IdentQuoteSlice(dialect.LQ, dialect.RQ, selectCols), ",")
}
query := fmt.Sprintf(
"select %s from \"nickname_listings\" where \"id\"=$1", sel,
)
q := queries.Raw(query, iD)
err := q.Bind(ctx, exec, nicknameListingObj)
if err != nil {
if errors.Cause(err) == sql.ErrNoRows {
return nil, sql.ErrNoRows
}
return nil, errors.Wrap(err, "models: unable to select from nickname_listings")
}
return nicknameListingObj, nil
}
// InsertG a single record. See Insert for whitelist behavior description.
func (o *NicknameListing) InsertG(ctx context.Context, columns boil.Columns) error {
return o.Insert(ctx, boil.GetContextDB(), columns)
}
// Insert a single record using an executor.
// See boil.Columns.InsertColumnSet documentation to understand column list inference for inserts.
func (o *NicknameListing) Insert(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) error {
if o == nil {
return errors.New("models: no nickname_listings provided for insertion")
}
var err error
if !boil.TimestampsAreSkipped(ctx) {
currTime := time.Now().In(boil.GetLocation())
if queries.MustTime(o.CreatedAt).IsZero() {
queries.SetScanner(&o.CreatedAt, currTime)
}
if queries.MustTime(o.UpdatedAt).IsZero() {
queries.SetScanner(&o.UpdatedAt, currTime)
}
}
nzDefaults := queries.NonZeroDefaultSet(nicknameListingColumnsWithDefault, o)
key := makeCacheKey(columns, nzDefaults)
nicknameListingInsertCacheMut.RLock()
cache, cached := nicknameListingInsertCache[key]
nicknameListingInsertCacheMut.RUnlock()
if !cached {
wl, returnColumns := columns.InsertColumnSet(
nicknameListingAllColumns,
nicknameListingColumnsWithDefault,
nicknameListingColumnsWithoutDefault,
nzDefaults,
)
cache.valueMapping, err = queries.BindMapping(nicknameListingType, nicknameListingMapping, wl)
if err != nil {
return err
}
cache.retMapping, err = queries.BindMapping(nicknameListingType, nicknameListingMapping, returnColumns)
if err != nil {
return err
}
if len(wl) != 0 {
cache.query = fmt.Sprintf("INSERT INTO \"nickname_listings\" (\"%s\") %%sVALUES (%s)%%s", strings.Join(wl, "\",\""), strmangle.Placeholders(dialect.UseIndexPlaceholders, len(wl), 1, 1))
} else {
cache.query = "INSERT INTO \"nickname_listings\" %sDEFAULT VALUES%s"
}
var queryOutput, queryReturning string
if len(cache.retMapping) != 0 {
queryReturning = fmt.Sprintf(" RETURNING \"%s\"", strings.Join(returnColumns, "\",\""))
}
cache.query = fmt.Sprintf(cache.query, queryOutput, queryReturning)
}
value := reflect.Indirect(reflect.ValueOf(o))
vals := queries.ValuesFromMapping(value, cache.valueMapping)
if boil.IsDebug(ctx) {
writer := boil.DebugWriterFrom(ctx)
fmt.Fprintln(writer, cache.query)
fmt.Fprintln(writer, vals)
}
if len(cache.retMapping) != 0 {
err = exec.QueryRowContext(ctx, cache.query, vals...).Scan(queries.PtrsFromMapping(value, cache.retMapping)...)
} else {
_, err = exec.ExecContext(ctx, cache.query, vals...)
}
if err != nil {
return errors.Wrap(err, "models: unable to insert into nickname_listings")
}
if !cached {
nicknameListingInsertCacheMut.Lock()
nicknameListingInsertCache[key] = cache
nicknameListingInsertCacheMut.Unlock()
}
return nil
}
// UpdateG a single NicknameListing record using the global executor.
// See Update for more documentation.
func (o *NicknameListing) UpdateG(ctx context.Context, columns boil.Columns) (int64, error) {
return o.Update(ctx, boil.GetContextDB(), columns)
}
// Update uses an executor to update the NicknameListing.
// See boil.Columns.UpdateColumnSet documentation to understand column list inference for updates.
// Update does not automatically update the record in case of default values. Use .Reload() to refresh the records.
func (o *NicknameListing) Update(ctx context.Context, exec boil.ContextExecutor, columns boil.Columns) (int64, error) {
if !boil.TimestampsAreSkipped(ctx) {
currTime := time.Now().In(boil.GetLocation())
queries.SetScanner(&o.UpdatedAt, currTime)
}
var err error
key := makeCacheKey(columns, nil)
nicknameListingUpdateCacheMut.RLock()
cache, cached := nicknameListingUpdateCache[key]
nicknameListingUpdateCacheMut.RUnlock()
if !cached {
wl := columns.UpdateColumnSet(
nicknameListingAllColumns,
nicknameListingPrimaryKeyColumns,
)
if !columns.IsWhitelist() {
wl = strmangle.SetComplement(wl, []string{"created_at"})
}
if len(wl) == 0 {
return 0, errors.New("models: unable to update nickname_listings, could not build whitelist")
}
cache.query = fmt.Sprintf("UPDATE \"nickname_listings\" SET %s WHERE %s",
strmangle.SetParamNames("\"", "\"", 1, wl),
strmangle.WhereClause("\"", "\"", len(wl)+1, nicknameListingPrimaryKeyColumns),
)
cache.valueMapping, err = queries.BindMapping(nicknameListingType, nicknameListingMapping, append(wl, nicknameListingPrimaryKeyColumns...))
if err != nil {
return 0, err
}
}
values := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(o)), cache.valueMapping)
if boil.IsDebug(ctx) {
writer := boil.DebugWriterFrom(ctx)
fmt.Fprintln(writer, cache.query)
fmt.Fprintln(writer, values)
}
var result sql.Result
result, err = exec.ExecContext(ctx, cache.query, values...)
if err != nil {
return 0, errors.Wrap(err, "models: unable to update nickname_listings row")
}
rowsAff, err := result.RowsAffected()
if err != nil {
return 0, errors.Wrap(err, "models: failed to get rows affected by update for nickname_listings")
}
if !cached {
nicknameListingUpdateCacheMut.Lock()
nicknameListingUpdateCache[key] = cache
nicknameListingUpdateCacheMut.Unlock()
}
return rowsAff, nil
}
// UpdateAllG updates all rows with the specified column values.
func (q nicknameListingQuery) UpdateAllG(ctx context.Context, cols M) (int64, error) {
return q.UpdateAll(ctx, boil.GetContextDB(), cols)
}
// UpdateAll updates all rows with the specified column values.
func (q nicknameListingQuery) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error) {
queries.SetUpdate(q.Query, cols)
result, err := q.Query.ExecContext(ctx, exec)
if err != nil {
return 0, errors.Wrap(err, "models: unable to update all for nickname_listings")
}
rowsAff, err := result.RowsAffected()
if err != nil {
return 0, errors.Wrap(err, "models: unable to retrieve rows affected for nickname_listings")
}
return rowsAff, nil
}
// UpdateAllG updates all rows with the specified column values.
func (o NicknameListingSlice) UpdateAllG(ctx context.Context, cols M) (int64, error) {
return o.UpdateAll(ctx, boil.GetContextDB(), cols)
}
// UpdateAll updates all rows with the specified column values, using an executor.
func (o NicknameListingSlice) UpdateAll(ctx context.Context, exec boil.ContextExecutor, cols M) (int64, error) {
ln := int64(len(o))
if ln == 0 {
return 0, nil
}
if len(cols) == 0 {
return 0, errors.New("models: update all requires at least one column argument")
}
colNames := make([]string, len(cols))
args := make([]interface{}, len(cols))
i := 0
for name, value := range cols {
colNames[i] = name
args[i] = value
i++
}
// Append all of the primary key values for each column
for _, obj := range o {
pkeyArgs := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(obj)), nicknameListingPrimaryKeyMapping)
args = append(args, pkeyArgs...)
}
sql := fmt.Sprintf("UPDATE \"nickname_listings\" SET %s WHERE %s",
strmangle.SetParamNames("\"", "\"", 1, colNames),
strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), len(colNames)+1, nicknameListingPrimaryKeyColumns, len(o)))
if boil.IsDebug(ctx) {
writer := boil.DebugWriterFrom(ctx)
fmt.Fprintln(writer, sql)
fmt.Fprintln(writer, args...)
}
result, err := exec.ExecContext(ctx, sql, args...)
if err != nil {
return 0, errors.Wrap(err, "models: unable to update all in nicknameListing slice")
}
rowsAff, err := result.RowsAffected()
if err != nil {
return 0, errors.Wrap(err, "models: unable to retrieve rows affected all in update all nicknameListing")
}
return rowsAff, nil
}
// UpsertG attempts an insert, and does an update or ignore on conflict.
func (o *NicknameListing) UpsertG(ctx context.Context, updateOnConflict bool, conflictColumns []string, updateColumns, insertColumns boil.Columns) error {
return o.Upsert(ctx, boil.GetContextDB(), updateOnConflict, conflictColumns, updateColumns, insertColumns)
}
// Upsert attempts an insert using an executor, and does an update or ignore on conflict.
// See boil.Columns documentation for how to properly use updateColumns and insertColumns.
func (o *NicknameListing) Upsert(ctx context.Context, exec boil.ContextExecutor, updateOnConflict bool, conflictColumns []string, updateColumns, insertColumns boil.Columns) error {
if o == nil {
return errors.New("models: no nickname_listings provided for upsert")
}
if !boil.TimestampsAreSkipped(ctx) {
currTime := time.Now().In(boil.GetLocation())
if queries.MustTime(o.CreatedAt).IsZero() {
queries.SetScanner(&o.CreatedAt, currTime)
}
queries.SetScanner(&o.UpdatedAt, currTime)
}
nzDefaults := queries.NonZeroDefaultSet(nicknameListingColumnsWithDefault, o)
// Build cache key in-line uglily - mysql vs psql problems
buf := strmangle.GetBuffer()
if updateOnConflict {
buf.WriteByte('t')
} else {
buf.WriteByte('f')
}
buf.WriteByte('.')
for _, c := range conflictColumns {
buf.WriteString(c)
}
buf.WriteByte('.')
buf.WriteString(strconv.Itoa(updateColumns.Kind))
for _, c := range updateColumns.Cols {
buf.WriteString(c)
}
buf.WriteByte('.')
buf.WriteString(strconv.Itoa(insertColumns.Kind))
for _, c := range insertColumns.Cols {
buf.WriteString(c)
}
buf.WriteByte('.')
for _, c := range nzDefaults {
buf.WriteString(c)
}
key := buf.String()
strmangle.PutBuffer(buf)
nicknameListingUpsertCacheMut.RLock()
cache, cached := nicknameListingUpsertCache[key]
nicknameListingUpsertCacheMut.RUnlock()
var err error
if !cached {
insert, ret := insertColumns.InsertColumnSet(
nicknameListingAllColumns,
nicknameListingColumnsWithDefault,
nicknameListingColumnsWithoutDefault,
nzDefaults,
)
update := updateColumns.UpdateColumnSet(
nicknameListingAllColumns,
nicknameListingPrimaryKeyColumns,
)
if updateOnConflict && len(update) == 0 {
return errors.New("models: unable to upsert nickname_listings, could not build update column list")
}
conflict := conflictColumns
if len(conflict) == 0 {
conflict = make([]string, len(nicknameListingPrimaryKeyColumns))
copy(conflict, nicknameListingPrimaryKeyColumns)
}
cache.query = buildUpsertQueryPostgres(dialect, "\"nickname_listings\"", updateOnConflict, ret, update, conflict, insert)
cache.valueMapping, err = queries.BindMapping(nicknameListingType, nicknameListingMapping, insert)
if err != nil {
return err
}
if len(ret) != 0 {
cache.retMapping, err = queries.BindMapping(nicknameListingType, nicknameListingMapping, ret)
if err != nil {
return err
}
}
}
value := reflect.Indirect(reflect.ValueOf(o))
vals := queries.ValuesFromMapping(value, cache.valueMapping)
var returns []interface{}
if len(cache.retMapping) != 0 {
returns = queries.PtrsFromMapping(value, cache.retMapping)
}
if boil.IsDebug(ctx) {
writer := boil.DebugWriterFrom(ctx)
fmt.Fprintln(writer, cache.query)
fmt.Fprintln(writer, vals)
}
if len(cache.retMapping) != 0 {
err = exec.QueryRowContext(ctx, cache.query, vals...).Scan(returns...)
if err == sql.ErrNoRows {
err = nil // Postgres doesn't return anything when there's no update
}
} else {
_, err = exec.ExecContext(ctx, cache.query, vals...)
}
if err != nil {
return errors.Wrap(err, "models: unable to upsert nickname_listings")
}
if !cached {
nicknameListingUpsertCacheMut.Lock()
nicknameListingUpsertCache[key] = cache
nicknameListingUpsertCacheMut.Unlock()
}
return nil
}
// DeleteG deletes a single NicknameListing record.
// DeleteG will match against the primary key column to find the record to delete.
func (o *NicknameListing) DeleteG(ctx context.Context) (int64, error) {
return o.Delete(ctx, boil.GetContextDB())
}
// Delete deletes a single NicknameListing record with an executor.
// Delete will match against the primary key column to find the record to delete.
func (o *NicknameListing) Delete(ctx context.Context, exec boil.ContextExecutor) (int64, error) {
if o == nil {
return 0, errors.New("models: no NicknameListing provided for delete")
}
args := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(o)), nicknameListingPrimaryKeyMapping)
sql := "DELETE FROM \"nickname_listings\" WHERE \"id\"=$1"
if boil.IsDebug(ctx) {
writer := boil.DebugWriterFrom(ctx)
fmt.Fprintln(writer, sql)
fmt.Fprintln(writer, args...)
}
result, err := exec.ExecContext(ctx, sql, args...)
if err != nil {
return 0, errors.Wrap(err, "models: unable to delete from nickname_listings")
}
rowsAff, err := result.RowsAffected()
if err != nil {
return 0, errors.Wrap(err, "models: failed to get rows affected by delete for nickname_listings")
}
return rowsAff, nil
}
func (q nicknameListingQuery) DeleteAllG(ctx context.Context) (int64, error) {
return q.DeleteAll(ctx, boil.GetContextDB())
}
// DeleteAll deletes all matching rows.
func (q nicknameListingQuery) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error) {
if q.Query == nil {
return 0, errors.New("models: no nicknameListingQuery provided for delete all")
}
queries.SetDelete(q.Query)
result, err := q.Query.ExecContext(ctx, exec)
if err != nil {
return 0, errors.Wrap(err, "models: unable to delete all from nickname_listings")
}
rowsAff, err := result.RowsAffected()
if err != nil {
return 0, errors.Wrap(err, "models: failed to get rows affected by deleteall for nickname_listings")
}
return rowsAff, nil
}
// DeleteAllG deletes all rows in the slice.
func (o NicknameListingSlice) DeleteAllG(ctx context.Context) (int64, error) {
return o.DeleteAll(ctx, boil.GetContextDB())
}
// DeleteAll deletes all rows in the slice, using an executor.
func (o NicknameListingSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (int64, error) {
if len(o) == 0 {
return 0, nil
}
var args []interface{}
for _, obj := range o {
pkeyArgs := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(obj)), nicknameListingPrimaryKeyMapping)
args = append(args, pkeyArgs...)
}
sql := "DELETE FROM \"nickname_listings\" WHERE " +
strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), 1, nicknameListingPrimaryKeyColumns, len(o))
if boil.IsDebug(ctx) {
writer := boil.DebugWriterFrom(ctx)
fmt.Fprintln(writer, sql)
fmt.Fprintln(writer, args)
}
result, err := exec.ExecContext(ctx, sql, args...)
if err != nil {
return 0, errors.Wrap(err, "models: unable to delete all from nicknameListing slice")
}
rowsAff, err := result.RowsAffected()
if err != nil {
return 0, errors.Wrap(err, "models: failed to get rows affected by deleteall for nickname_listings")
}
return rowsAff, nil
}
// ReloadG refetches the object from the database using the primary keys.
func (o *NicknameListing) ReloadG(ctx context.Context) error {
if o == nil {
return errors.New("models: no NicknameListing provided for reload")
}
return o.Reload(ctx, boil.GetContextDB())
}
// Reload refetches the object from the database
// using the primary keys with an executor.
func (o *NicknameListing) Reload(ctx context.Context, exec boil.ContextExecutor) error {
ret, err := FindNicknameListing(ctx, exec, o.ID)
if err != nil {
return err
}
*o = *ret
return nil
}
// ReloadAllG refetches every row with matching primary key column values
// and overwrites the original object slice with the newly updated slice.
func (o *NicknameListingSlice) ReloadAllG(ctx context.Context) error {
if o == nil {
return errors.New("models: empty NicknameListingSlice provided for reload all")
}
return o.ReloadAll(ctx, boil.GetContextDB())
}
// ReloadAll refetches every row with matching primary key column values
// and overwrites the original object slice with the newly updated slice.
func (o *NicknameListingSlice) ReloadAll(ctx context.Context, exec boil.ContextExecutor) error {
if o == nil || len(*o) == 0 {
return nil
}
slice := NicknameListingSlice{}
var args []interface{}
for _, obj := range *o {
pkeyArgs := queries.ValuesFromMapping(reflect.Indirect(reflect.ValueOf(obj)), nicknameListingPrimaryKeyMapping)
args = append(args, pkeyArgs...)
}
sql := "SELECT \"nickname_listings\".* FROM \"nickname_listings\" WHERE " +
strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), 1, nicknameListingPrimaryKeyColumns, len(*o))
q := queries.Raw(sql, args...)
err := q.Bind(ctx, exec, &slice)
if err != nil {
return errors.Wrap(err, "models: unable to reload all in NicknameListingSlice")
}
*o = slice
return nil
}
// NicknameListingExistsG checks if the NicknameListing row exists.
func NicknameListingExistsG(ctx context.Context, iD int) (bool, error) {
return NicknameListingExists(ctx, boil.GetContextDB(), iD)
}
// NicknameListingExists checks if the NicknameListing row exists.
func NicknameListingExists(ctx context.Context, exec boil.ContextExecutor, iD int) (bool, error) {
var exists bool
sql := "select exists(select 1 from \"nickname_listings\" where \"id\"=$1 limit 1)"
if boil.IsDebug(ctx) {
writer := boil.DebugWriterFrom(ctx)
fmt.Fprintln(writer, sql)
fmt.Fprintln(writer, iD)
}
row := exec.QueryRowContext(ctx, sql, iD)
err := row.Scan(&exists)
if err != nil {
return false, errors.Wrap(err, "models: unable to check if nickname_listings exists")
}
return exists, nil
}