update codegen

This commit is contained in:
Felix Kunde 2020-03-04 09:36:42 +01:00
parent 918df1461b
commit 2bba673f1d
1 changed files with 10 additions and 0 deletions

View File

@ -76,6 +76,11 @@ func (in *ConnectionPool) DeepCopyInto(out *ConnectionPool) {
*out = new(int32)
**out = **in
}
if in.MaxDBConnections != nil {
in, out := &in.MaxDBConnections, &out.MaxDBConnections
*out = new(int32)
**out = **in
}
out.Resources = in.Resources
return
}
@ -98,6 +103,11 @@ func (in *ConnectionPoolConfiguration) DeepCopyInto(out *ConnectionPoolConfigura
*out = new(int32)
**out = **in
}
if in.MaxDBConnections != nil {
in, out := &in.MaxDBConnections, &out.MaxDBConnections
*out = new(int32)
**out = **in
}
return
}