update generated code

This commit is contained in:
Felix Kunde 2020-02-24 16:41:01 +01:00
parent 59f4d4e328
commit 353eb6994d
1 changed files with 7 additions and 0 deletions

View File

@ -674,6 +674,13 @@ func (in *PreparedDatabase) DeepCopyInto(out *PreparedDatabase) {
(*out)[key] = *val.DeepCopy()
}
}
if in.Extensions != nil {
in, out := &in.Extensions, &out.Extensions
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
return
}