1
0
forked from ALHP/ALHP.GO

added SRCINFO caching via db

This commit is contained in:
2022-08-13 20:48:34 +02:00
parent 4ead1f74cd
commit 0f46a95995
11 changed files with 323 additions and 2 deletions

View File

@@ -402,6 +402,26 @@ func (dpu *DbPackageUpdate) ClearIoOut() *DbPackageUpdate {
return dpu
}
// SetSrcinfo sets the "srcinfo" field.
func (dpu *DbPackageUpdate) SetSrcinfo(s string) *DbPackageUpdate {
dpu.mutation.SetSrcinfo(s)
return dpu
}
// SetNillableSrcinfo sets the "srcinfo" field if the given value is not nil.
func (dpu *DbPackageUpdate) SetNillableSrcinfo(s *string) *DbPackageUpdate {
if s != nil {
dpu.SetSrcinfo(*s)
}
return dpu
}
// ClearSrcinfo clears the value of the "srcinfo" field.
func (dpu *DbPackageUpdate) ClearSrcinfo() *DbPackageUpdate {
dpu.mutation.ClearSrcinfo()
return dpu
}
// Mutation returns the DbPackageMutation object of the builder.
func (dpu *DbPackageUpdate) Mutation() *DbPackageMutation {
return dpu.mutation
@@ -779,6 +799,19 @@ func (dpu *DbPackageUpdate) sqlSave(ctx context.Context) (n int, err error) {
Column: dbpackage.FieldIoOut,
})
}
if value, ok := dpu.mutation.Srcinfo(); ok {
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
Type: field.TypeString,
Value: value,
Column: dbpackage.FieldSrcinfo,
})
}
if dpu.mutation.SrcinfoCleared() {
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
Type: field.TypeString,
Column: dbpackage.FieldSrcinfo,
})
}
_spec.Modifiers = dpu.modifiers
if n, err = sqlgraph.UpdateNodes(ctx, dpu.driver, _spec); err != nil {
if _, ok := err.(*sqlgraph.NotFoundError); ok {
@@ -1173,6 +1206,26 @@ func (dpuo *DbPackageUpdateOne) ClearIoOut() *DbPackageUpdateOne {
return dpuo
}
// SetSrcinfo sets the "srcinfo" field.
func (dpuo *DbPackageUpdateOne) SetSrcinfo(s string) *DbPackageUpdateOne {
dpuo.mutation.SetSrcinfo(s)
return dpuo
}
// SetNillableSrcinfo sets the "srcinfo" field if the given value is not nil.
func (dpuo *DbPackageUpdateOne) SetNillableSrcinfo(s *string) *DbPackageUpdateOne {
if s != nil {
dpuo.SetSrcinfo(*s)
}
return dpuo
}
// ClearSrcinfo clears the value of the "srcinfo" field.
func (dpuo *DbPackageUpdateOne) ClearSrcinfo() *DbPackageUpdateOne {
dpuo.mutation.ClearSrcinfo()
return dpuo
}
// Mutation returns the DbPackageMutation object of the builder.
func (dpuo *DbPackageUpdateOne) Mutation() *DbPackageMutation {
return dpuo.mutation
@@ -1580,6 +1633,19 @@ func (dpuo *DbPackageUpdateOne) sqlSave(ctx context.Context) (_node *DbPackage,
Column: dbpackage.FieldIoOut,
})
}
if value, ok := dpuo.mutation.Srcinfo(); ok {
_spec.Fields.Set = append(_spec.Fields.Set, &sqlgraph.FieldSpec{
Type: field.TypeString,
Value: value,
Column: dbpackage.FieldSrcinfo,
})
}
if dpuo.mutation.SrcinfoCleared() {
_spec.Fields.Clear = append(_spec.Fields.Clear, &sqlgraph.FieldSpec{
Type: field.TypeString,
Column: dbpackage.FieldSrcinfo,
})
}
_spec.Modifiers = dpuo.modifiers
_node = &DbPackage{config: dpuo.config}
_spec.Assign = _node.assignValues