• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

zalando / postgres-operator / 17042710574

18 Aug 2025 01:55PM UTC coverage: 42.062% (-3.4%) from 45.498%
17042710574

Pull #2943

github

web-flow
Merge 045132513 into 51135b07d
Pull Request #2943: Ensure compatibility with Spilo after WAL-E removal (support old and new versions)

14 of 15 new or added lines in 3 files covered. (93.33%)

531 existing lines in 13 files now uncovered.

6494 of 15439 relevant lines covered (42.06%)

15.22 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/pkg/apis/zalando.org/v1/zz_generated.deepcopy.go
1
// +build !ignore_autogenerated
2

3
/*
4
Copyright 2021 Compose, Zalando SE
5

6
Permission is hereby granted, free of charge, to any person obtaining a copy
7
of this software and associated documentation files (the "Software"), to deal
8
in the Software without restriction, including without limitation the rights
9
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
copies of the Software, and to permit persons to whom the Software is
11
furnished to do so, subject to the following conditions:
12

13
The above copyright notice and this permission notice shall be included in all
14
copies or substantial portions of the Software.
15

16
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
SOFTWARE.
23
*/
24

25
// Code generated by deepcopy-gen. DO NOT EDIT.
26

27
package v1
28

29
import (
30
        runtime "k8s.io/apimachinery/pkg/runtime"
31
)
32

33
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
UNCOV
34
func (in *Connection) DeepCopyInto(out *Connection) {
×
UNCOV
35
        *out = *in
×
UNCOV
36
        if in.PublicationName != nil {
×
37
                in, out := &in.PublicationName, &out.PublicationName
×
38
                *out = new(string)
×
39
                **out = **in
×
40
        }
×
UNCOV
41
        in.DBAuth.DeepCopyInto(&out.DBAuth)
×
UNCOV
42
        return
×
43
}
44

45
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
46
func (in *Connection) DeepCopy() *Connection {
×
47
        if in == nil {
×
48
                return nil
×
49
        }
×
50
        out := new(Connection)
×
51
        in.DeepCopyInto(out)
×
52
        return out
×
53
}
54

55
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
UNCOV
56
func (in *DBAuth) DeepCopyInto(out *DBAuth) {
×
UNCOV
57
        *out = *in
×
UNCOV
58
        return
×
UNCOV
59
}
×
60

61
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
62
func (in *DBAuth) DeepCopy() *DBAuth {
×
63
        if in == nil {
×
64
                return nil
×
65
        }
×
66
        out := new(DBAuth)
×
67
        in.DeepCopyInto(out)
×
68
        return out
×
69
}
70

71
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
UNCOV
72
func (in *EventStream) DeepCopyInto(out *EventStream) {
×
UNCOV
73
        *out = *in
×
UNCOV
74
        in.EventStreamFlow.DeepCopyInto(&out.EventStreamFlow)
×
UNCOV
75
        in.EventStreamRecovery.DeepCopyInto(&out.EventStreamRecovery)
×
UNCOV
76
        in.EventStreamSink.DeepCopyInto(&out.EventStreamSink)
×
UNCOV
77
        in.EventStreamSource.DeepCopyInto(&out.EventStreamSource)
×
UNCOV
78
        return
×
UNCOV
79
}
×
80

81
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
82
func (in *EventStream) DeepCopy() *EventStream {
×
83
        if in == nil {
×
84
                return nil
×
85
        }
×
86
        out := new(EventStream)
×
87
        in.DeepCopyInto(out)
×
88
        return out
×
89
}
90

91
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
UNCOV
92
func (in *EventStreamFlow) DeepCopyInto(out *EventStreamFlow) {
×
UNCOV
93
        *out = *in
×
UNCOV
94
        if in.PayloadColumn != nil {
×
UNCOV
95
                in, out := &in.PayloadColumn, &out.PayloadColumn
×
UNCOV
96
                *out = new(string)
×
UNCOV
97
                **out = **in
×
UNCOV
98
        }
×
UNCOV
99
        return
×
100
}
101

102
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
103
func (in *EventStreamFlow) DeepCopy() *EventStreamFlow {
×
104
        if in == nil {
×
105
                return nil
×
106
        }
×
107
        out := new(EventStreamFlow)
×
108
        in.DeepCopyInto(out)
×
109
        return out
×
110
}
111

112
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
UNCOV
113
func (in *EventStreamRecovery) DeepCopyInto(out *EventStreamRecovery) {
×
UNCOV
114
        *out = *in
×
UNCOV
115
        if in.Sink != nil {
×
UNCOV
116
                in, out := &in.Sink, &out.Sink
×
UNCOV
117
                *out = new(EventStreamSink)
×
UNCOV
118
                (*in).DeepCopyInto(*out)
×
UNCOV
119
        }
×
UNCOV
120
        return
×
121
}
122

123
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
124
func (in *EventStreamRecovery) DeepCopy() *EventStreamRecovery {
×
125
        if in == nil {
×
126
                return nil
×
127
        }
×
128
        out := new(EventStreamRecovery)
×
129
        in.DeepCopyInto(out)
×
130
        return out
×
131
}
132

133
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
UNCOV
134
func (in *EventStreamSink) DeepCopyInto(out *EventStreamSink) {
×
UNCOV
135
        *out = *in
×
UNCOV
136
        if in.MaxBatchSize != nil {
×
UNCOV
137
                in, out := &in.MaxBatchSize, &out.MaxBatchSize
×
UNCOV
138
                *out = new(uint32)
×
UNCOV
139
                **out = **in
×
UNCOV
140
        }
×
UNCOV
141
        return
×
142
}
143

144
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
145
func (in *EventStreamSink) DeepCopy() *EventStreamSink {
×
146
        if in == nil {
×
147
                return nil
×
148
        }
×
149
        out := new(EventStreamSink)
×
150
        in.DeepCopyInto(out)
×
151
        return out
×
152
}
153

154
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
UNCOV
155
func (in *EventStreamSource) DeepCopyInto(out *EventStreamSource) {
×
UNCOV
156
        *out = *in
×
UNCOV
157
        in.Connection.DeepCopyInto(&out.Connection)
×
UNCOV
158
        if in.Filter != nil {
×
UNCOV
159
                in, out := &in.Filter, &out.Filter
×
UNCOV
160
                *out = new(string)
×
UNCOV
161
                **out = **in
×
UNCOV
162
        }
×
UNCOV
163
        in.EventStreamTable.DeepCopyInto(&out.EventStreamTable)
×
UNCOV
164
        return
×
165
}
166

167
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
168
func (in *EventStreamSource) DeepCopy() *EventStreamSource {
×
169
        if in == nil {
×
170
                return nil
×
171
        }
×
172
        out := new(EventStreamSource)
×
173
        in.DeepCopyInto(out)
×
174
        return out
×
175
}
176

177
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
UNCOV
178
func (in *EventStreamTable) DeepCopyInto(out *EventStreamTable) {
×
UNCOV
179
        *out = *in
×
UNCOV
180
        if in.IDColumn != nil {
×
UNCOV
181
                in, out := &in.IDColumn, &out.IDColumn
×
UNCOV
182
                *out = new(string)
×
UNCOV
183
                **out = **in
×
UNCOV
184
        }
×
UNCOV
185
        return
×
186
}
187

188
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
189
func (in *EventStreamTable) DeepCopy() *EventStreamTable {
×
190
        if in == nil {
×
191
                return nil
×
192
        }
×
193
        out := new(EventStreamTable)
×
194
        in.DeepCopyInto(out)
×
195
        return out
×
196
}
197

198
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
UNCOV
199
func (in *FabricEventStreamSpec) DeepCopyInto(out *FabricEventStreamSpec) {
×
UNCOV
200
        *out = *in
×
UNCOV
201
        if in.EventStreams != nil {
×
UNCOV
202
                in, out := &in.EventStreams, &out.EventStreams
×
UNCOV
203
                *out = make([]EventStream, len(*in))
×
UNCOV
204
                for i := range *in {
×
UNCOV
205
                        (*in)[i].DeepCopyInto(&(*out)[i])
×
UNCOV
206
                }
×
207
        }
208

UNCOV
209
        return
×
210
}
211

212
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FabricEventStreamSpec.
213
func (in *FabricEventStreamSpec) DeepCopy() *FabricEventStreamSpec {
×
214
        if in == nil {
×
215
                return nil
×
216
        }
×
217
        out := new(FabricEventStreamSpec)
×
218
        in.DeepCopyInto(out)
×
219
        return out
×
220
}
221

222
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
UNCOV
223
func (in *FabricEventStream) DeepCopyInto(out *FabricEventStream) {
×
UNCOV
224
        *out = *in
×
UNCOV
225
        out.TypeMeta = in.TypeMeta
×
UNCOV
226
        in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
×
UNCOV
227
        in.Spec.DeepCopyInto(&out.Spec)
×
UNCOV
228
        return
×
UNCOV
229
}
×
230

231
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FabricEventStream.
UNCOV
232
func (in *FabricEventStream) DeepCopy() *FabricEventStream {
×
UNCOV
233
        if in == nil {
×
234
                return nil
×
235
        }
×
UNCOV
236
        out := new(FabricEventStream)
×
UNCOV
237
        in.DeepCopyInto(out)
×
UNCOV
238
        return out
×
239
}
240

241
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
UNCOV
242
func (in *FabricEventStream) DeepCopyObject() runtime.Object {
×
UNCOV
243
        if c := in.DeepCopy(); c != nil {
×
UNCOV
244
                return c
×
UNCOV
245
        }
×
246
        return nil
×
247
}
248

249
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
UNCOV
250
func (in *FabricEventStreamList) DeepCopyInto(out *FabricEventStreamList) {
×
UNCOV
251
        *out = *in
×
UNCOV
252
        out.TypeMeta = in.TypeMeta
×
UNCOV
253
        in.ListMeta.DeepCopyInto(&out.ListMeta)
×
UNCOV
254
        if in.Items != nil {
×
UNCOV
255
                in, out := &in.Items, &out.Items
×
UNCOV
256
                *out = make([]FabricEventStream, len(*in))
×
UNCOV
257
                for i := range *in {
×
UNCOV
258
                        (*in)[i].DeepCopyInto(&(*out)[i])
×
UNCOV
259
                }
×
260
        }
UNCOV
261
        return
×
262
}
263

264
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new FabricEventStreamList.
UNCOV
265
func (in *FabricEventStreamList) DeepCopy() *FabricEventStreamList {
×
UNCOV
266
        if in == nil {
×
267
                return nil
×
268
        }
×
UNCOV
269
        out := new(FabricEventStreamList)
×
UNCOV
270
        in.DeepCopyInto(out)
×
UNCOV
271
        return out
×
272
}
273

274
// DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
UNCOV
275
func (in *FabricEventStreamList) DeepCopyObject() runtime.Object {
×
UNCOV
276
        if c := in.DeepCopy(); c != nil {
×
UNCOV
277
                return c
×
UNCOV
278
        }
×
279
        return nil
×
280
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc