update codegen
This commit is contained in:
parent
918df1461b
commit
2bba673f1d
|
|
@ -76,6 +76,11 @@ func (in *ConnectionPool) DeepCopyInto(out *ConnectionPool) {
|
||||||
*out = new(int32)
|
*out = new(int32)
|
||||||
**out = **in
|
**out = **in
|
||||||
}
|
}
|
||||||
|
if in.MaxDBConnections != nil {
|
||||||
|
in, out := &in.MaxDBConnections, &out.MaxDBConnections
|
||||||
|
*out = new(int32)
|
||||||
|
**out = **in
|
||||||
|
}
|
||||||
out.Resources = in.Resources
|
out.Resources = in.Resources
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
@ -98,6 +103,11 @@ func (in *ConnectionPoolConfiguration) DeepCopyInto(out *ConnectionPoolConfigura
|
||||||
*out = new(int32)
|
*out = new(int32)
|
||||||
**out = **in
|
**out = **in
|
||||||
}
|
}
|
||||||
|
if in.MaxDBConnections != nil {
|
||||||
|
in, out := &in.MaxDBConnections, &out.MaxDBConnections
|
||||||
|
*out = new(int32)
|
||||||
|
**out = **in
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue