-
Notifications
You must be signed in to change notification settings - Fork 843
/
execution_maps.go
648 lines (596 loc) · 18.2 KB
/
execution_maps.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
// The MIT License
//
// Copyright (c) 2020 Temporal Technologies Inc. All rights reserved.
//
// Copyright (c) 2020 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package mysql
import (
"context"
"database/sql"
"fmt"
"strings"
"github.com/jmoiron/sqlx"
"go.temporal.io/server/common/persistence/sql/sqlplugin"
)
const (
deleteMapQryTemplate = `DELETE FROM %v
WHERE
shard_id = ? AND
namespace_id = ? AND
workflow_id = ? AND
run_id = ?`
// %[2]v is the columns of the value struct (i.e. no primary key columns), comma separated
// %[3]v should be %[2]v with colons prepended.
// i.e. %[3]v = ",".join(":" + s for s in %[2]v)
// %[4]v should be %[2]v in the format of n=VALUES(n).
// i.e. %[4]v = ",".join(s + "=VALUES(" + s + ")" for s in %[2]v)
// So that this query can be used with BindNamed
// %[5]v should be the name of the key associated with the map
// e.g. for ActivityInfo it is "schedule_id"
setKeyInMapQryTemplate = `INSERT INTO %[1]v
(shard_id, namespace_id, workflow_id, run_id, %[5]v, %[2]v)
VALUES
(:shard_id, :namespace_id, :workflow_id, :run_id, :%[5]v, %[3]v)
ON DUPLICATE KEY UPDATE %[5]v=VALUES(%[5]v), %[4]v;`
// %[2]v is the name of the key
deleteKeyInMapQryTemplate = `DELETE FROM %[1]v
WHERE
shard_id = ? AND
namespace_id = ? AND
workflow_id = ? AND
run_id = ? AND
%[2]v IN ( ? )`
// %[1]v is the name of the table
// %[2]v is the name of the key
// %[3]v is the value columns, separated by commas
getMapQryTemplate = `SELECT %[2]v, %[3]v FROM %[1]v
WHERE
shard_id = ? AND
namespace_id = ? AND
workflow_id = ? AND
run_id = ?`
)
func stringMap(a []string, f func(string) string) []string {
b := make([]string, len(a))
for i, v := range a {
b[i] = f(v)
}
return b
}
func makeDeleteMapQry(tableName string) string {
return fmt.Sprintf(deleteMapQryTemplate, tableName)
}
func makeSetKeyInMapQry(tableName string, nonPrimaryKeyColumns []string, mapKeyName string) string {
return fmt.Sprintf(setKeyInMapQryTemplate,
tableName,
strings.Join(nonPrimaryKeyColumns, ","),
strings.Join(stringMap(nonPrimaryKeyColumns, func(x string) string {
return ":" + x
}), ","),
strings.Join(stringMap(nonPrimaryKeyColumns, func(x string) string {
return x + "=VALUES(" + x + ")"
}), ","),
mapKeyName)
}
func makeDeleteKeyInMapQry(tableName string, mapKeyName string) string {
return fmt.Sprintf(deleteKeyInMapQryTemplate,
tableName,
mapKeyName)
}
func makeGetMapQryTemplate(tableName string, nonPrimaryKeyColumns []string, mapKeyName string) string {
return fmt.Sprintf(getMapQryTemplate,
tableName,
mapKeyName,
strings.Join(nonPrimaryKeyColumns, ","))
}
var (
// Omit shard_id, run_id, namespace_id, workflow_id, schedule_id since they're in the primary key
activityInfoColumns = []string{
"data",
"data_encoding",
}
activityInfoTableName = "activity_info_maps"
activityInfoKey = "schedule_id"
deleteActivityInfoMapQry = makeDeleteMapQry(activityInfoTableName)
setKeyInActivityInfoMapQry = makeSetKeyInMapQry(activityInfoTableName, activityInfoColumns, activityInfoKey)
deleteKeyInActivityInfoMapQry = makeDeleteKeyInMapQry(activityInfoTableName, activityInfoKey)
getActivityInfoMapQry = makeGetMapQryTemplate(activityInfoTableName, activityInfoColumns, activityInfoKey)
)
// ReplaceIntoActivityInfoMaps replaces one or more rows in activity_info_maps table
func (mdb *db) ReplaceIntoActivityInfoMaps(
ctx context.Context,
rows []sqlplugin.ActivityInfoMapsRow,
) (sql.Result, error) {
return mdb.conn.NamedExecContext(ctx,
setKeyInActivityInfoMapQry,
rows,
)
}
// SelectAllFromActivityInfoMaps reads all rows from activity_info_maps table
func (mdb *db) SelectAllFromActivityInfoMaps(
ctx context.Context,
filter sqlplugin.ActivityInfoMapsAllFilter,
) ([]sqlplugin.ActivityInfoMapsRow, error) {
var rows []sqlplugin.ActivityInfoMapsRow
if err := mdb.conn.SelectContext(ctx,
&rows,
getActivityInfoMapQry,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
); err != nil {
return nil, err
}
for i := 0; i < len(rows); i++ {
rows[i].ShardID = filter.ShardID
rows[i].NamespaceID = filter.NamespaceID
rows[i].WorkflowID = filter.WorkflowID
rows[i].RunID = filter.RunID
}
return rows, nil
}
// DeleteFromActivityInfoMaps deletes one or more rows from activity_info_maps table
func (mdb *db) DeleteFromActivityInfoMaps(
ctx context.Context,
filter sqlplugin.ActivityInfoMapsFilter,
) (sql.Result, error) {
query, args, err := sqlx.In(
deleteKeyInActivityInfoMapQry,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
filter.ScheduleIDs,
)
if err != nil {
return nil, err
}
return mdb.conn.ExecContext(ctx,
mdb.conn.Rebind(query),
args...,
)
}
// DeleteAllFromActivityInfoMaps deletes all rows from activity_info_maps table
func (mdb *db) DeleteAllFromActivityInfoMaps(
ctx context.Context,
filter sqlplugin.ActivityInfoMapsAllFilter,
) (sql.Result, error) {
return mdb.conn.ExecContext(ctx,
deleteActivityInfoMapQry,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
)
}
var (
timerInfoColumns = []string{
"data",
"data_encoding",
}
timerInfoTableName = "timer_info_maps"
timerInfoKey = "timer_id"
deleteTimerInfoMapSQLQuery = makeDeleteMapQry(timerInfoTableName)
setKeyInTimerInfoMapSQLQuery = makeSetKeyInMapQry(timerInfoTableName, timerInfoColumns, timerInfoKey)
deleteKeyInTimerInfoMapSQLQuery = makeDeleteKeyInMapQry(timerInfoTableName, timerInfoKey)
getTimerInfoMapSQLQuery = makeGetMapQryTemplate(timerInfoTableName, timerInfoColumns, timerInfoKey)
)
// ReplaceIntoTimerInfoMaps replaces one or more rows in timer_info_maps table
func (mdb *db) ReplaceIntoTimerInfoMaps(
ctx context.Context,
rows []sqlplugin.TimerInfoMapsRow,
) (sql.Result, error) {
return mdb.conn.NamedExecContext(ctx,
setKeyInTimerInfoMapSQLQuery,
rows,
)
}
// SelectAllFromTimerInfoMaps reads all rows from timer_info_maps table
func (mdb *db) SelectAllFromTimerInfoMaps(
ctx context.Context,
filter sqlplugin.TimerInfoMapsAllFilter,
) ([]sqlplugin.TimerInfoMapsRow, error) {
var rows []sqlplugin.TimerInfoMapsRow
if err := mdb.conn.SelectContext(ctx,
&rows,
getTimerInfoMapSQLQuery,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
); err != nil {
return nil, err
}
for i := 0; i < len(rows); i++ {
rows[i].ShardID = filter.ShardID
rows[i].NamespaceID = filter.NamespaceID
rows[i].WorkflowID = filter.WorkflowID
rows[i].RunID = filter.RunID
}
return rows, nil
}
// DeleteFromTimerInfoMaps deletes one or more rows from timer_info_maps table
func (mdb *db) DeleteFromTimerInfoMaps(
ctx context.Context,
filter sqlplugin.TimerInfoMapsFilter,
) (sql.Result, error) {
query, args, err := sqlx.In(
deleteKeyInTimerInfoMapSQLQuery,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
filter.TimerIDs,
)
if err != nil {
return nil, err
}
return mdb.conn.ExecContext(ctx,
mdb.conn.Rebind(query),
args...,
)
}
// DeleteAllFromTimerInfoMaps deletes all rows from timer_info_maps table
func (mdb *db) DeleteAllFromTimerInfoMaps(
ctx context.Context,
filter sqlplugin.TimerInfoMapsAllFilter,
) (sql.Result, error) {
return mdb.conn.ExecContext(ctx,
deleteTimerInfoMapSQLQuery,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
)
}
var (
childExecutionInfoColumns = []string{
"data",
"data_encoding",
}
childExecutionInfoTableName = "child_execution_info_maps"
childExecutionInfoKey = "initiated_id"
deleteChildExecutionInfoMapQry = makeDeleteMapQry(childExecutionInfoTableName)
setKeyInChildExecutionInfoMapQry = makeSetKeyInMapQry(childExecutionInfoTableName, childExecutionInfoColumns, childExecutionInfoKey)
deleteKeyInChildExecutionInfoMapQry = makeDeleteKeyInMapQry(childExecutionInfoTableName, childExecutionInfoKey)
getChildExecutionInfoMapQry = makeGetMapQryTemplate(childExecutionInfoTableName, childExecutionInfoColumns, childExecutionInfoKey)
)
// ReplaceIntoChildExecutionInfoMaps replaces one or more rows in child_execution_info_maps table
func (mdb *db) ReplaceIntoChildExecutionInfoMaps(
ctx context.Context,
rows []sqlplugin.ChildExecutionInfoMapsRow,
) (sql.Result, error) {
return mdb.conn.NamedExecContext(ctx,
setKeyInChildExecutionInfoMapQry,
rows,
)
}
// SelectAllFromChildExecutionInfoMaps reads all rows from child_execution_info_maps table
func (mdb *db) SelectAllFromChildExecutionInfoMaps(
ctx context.Context,
filter sqlplugin.ChildExecutionInfoMapsAllFilter,
) ([]sqlplugin.ChildExecutionInfoMapsRow, error) {
var rows []sqlplugin.ChildExecutionInfoMapsRow
if err := mdb.conn.SelectContext(ctx,
&rows,
getChildExecutionInfoMapQry,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
); err != nil {
return nil, err
}
for i := 0; i < len(rows); i++ {
rows[i].ShardID = filter.ShardID
rows[i].NamespaceID = filter.NamespaceID
rows[i].WorkflowID = filter.WorkflowID
rows[i].RunID = filter.RunID
}
return rows, nil
}
// DeleteFromChildExecutionInfoMaps deletes one or more rows from child_execution_info_maps table
func (mdb *db) DeleteFromChildExecutionInfoMaps(
ctx context.Context,
filter sqlplugin.ChildExecutionInfoMapsFilter,
) (sql.Result, error) {
query, args, err := sqlx.In(
deleteKeyInChildExecutionInfoMapQry,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
filter.InitiatedIDs,
)
if err != nil {
return nil, err
}
return mdb.conn.ExecContext(ctx,
mdb.conn.Rebind(query),
args...,
)
}
// DeleteAllFromChildExecutionInfoMaps deletes all rows from child_execution_info_maps table
func (mdb *db) DeleteAllFromChildExecutionInfoMaps(
ctx context.Context,
filter sqlplugin.ChildExecutionInfoMapsAllFilter,
) (sql.Result, error) {
return mdb.conn.ExecContext(ctx,
deleteChildExecutionInfoMapQry,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
)
}
var (
requestCancelInfoColumns = []string{
"data",
"data_encoding",
}
requestCancelInfoTableName = "request_cancel_info_maps"
requestCancelInfoKey = "initiated_id"
deleteRequestCancelInfoMapQry = makeDeleteMapQry(requestCancelInfoTableName)
setKeyInRequestCancelInfoMapQry = makeSetKeyInMapQry(requestCancelInfoTableName, requestCancelInfoColumns, requestCancelInfoKey)
deleteKeyInRequestCancelInfoMapQry = makeDeleteKeyInMapQry(requestCancelInfoTableName, requestCancelInfoKey)
getRequestCancelInfoMapQry = makeGetMapQryTemplate(requestCancelInfoTableName, requestCancelInfoColumns, requestCancelInfoKey)
)
// ReplaceIntoRequestCancelInfoMaps replaces one or more rows in request_cancel_info_maps table
func (mdb *db) ReplaceIntoRequestCancelInfoMaps(
ctx context.Context,
rows []sqlplugin.RequestCancelInfoMapsRow,
) (sql.Result, error) {
return mdb.conn.NamedExecContext(ctx,
setKeyInRequestCancelInfoMapQry,
rows,
)
}
// SelectAllFromRequestCancelInfoMaps reads all rows from request_cancel_info_maps table
func (mdb *db) SelectAllFromRequestCancelInfoMaps(
ctx context.Context,
filter sqlplugin.RequestCancelInfoMapsAllFilter,
) ([]sqlplugin.RequestCancelInfoMapsRow, error) {
var rows []sqlplugin.RequestCancelInfoMapsRow
if err := mdb.conn.SelectContext(ctx,
&rows, getRequestCancelInfoMapQry,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
); err != nil {
return nil, err
}
for i := 0; i < len(rows); i++ {
rows[i].ShardID = filter.ShardID
rows[i].NamespaceID = filter.NamespaceID
rows[i].WorkflowID = filter.WorkflowID
rows[i].RunID = filter.RunID
}
return rows, nil
}
// DeleteFromRequestCancelInfoMaps deletes one or more rows from request_cancel_info_maps table
func (mdb *db) DeleteFromRequestCancelInfoMaps(
ctx context.Context,
filter sqlplugin.RequestCancelInfoMapsFilter,
) (sql.Result, error) {
query, args, err := sqlx.In(
deleteKeyInRequestCancelInfoMapQry,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
filter.InitiatedIDs,
)
if err != nil {
return nil, err
}
return mdb.conn.ExecContext(ctx,
mdb.conn.Rebind(query),
args...,
)
}
// DeleteAllFromRequestCancelInfoMaps deletes all rows from request_cancel_info_maps table
func (mdb *db) DeleteAllFromRequestCancelInfoMaps(
ctx context.Context,
filter sqlplugin.RequestCancelInfoMapsAllFilter,
) (sql.Result, error) {
return mdb.conn.ExecContext(ctx,
deleteRequestCancelInfoMapQry,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
)
}
var (
signalInfoColumns = []string{
"data",
"data_encoding",
}
signalInfoTableName = "signal_info_maps"
signalInfoKey = "initiated_id"
deleteSignalInfoMapQry = makeDeleteMapQry(signalInfoTableName)
setKeyInSignalInfoMapQry = makeSetKeyInMapQry(signalInfoTableName, signalInfoColumns, signalInfoKey)
deleteKeyInSignalInfoMapQry = makeDeleteKeyInMapQry(signalInfoTableName, signalInfoKey)
getSignalInfoMapQry = makeGetMapQryTemplate(signalInfoTableName, signalInfoColumns, signalInfoKey)
)
// ReplaceIntoSignalInfoMaps replaces one or more rows in signal_info_maps table
func (mdb *db) ReplaceIntoSignalInfoMaps(
ctx context.Context,
rows []sqlplugin.SignalInfoMapsRow,
) (sql.Result, error) {
return mdb.conn.NamedExecContext(ctx,
setKeyInSignalInfoMapQry,
rows,
)
}
// SelectAllFromSignalInfoMaps reads all rows from signal_info_maps table
func (mdb *db) SelectAllFromSignalInfoMaps(
ctx context.Context,
filter sqlplugin.SignalInfoMapsAllFilter,
) ([]sqlplugin.SignalInfoMapsRow, error) {
var rows []sqlplugin.SignalInfoMapsRow
if err := mdb.conn.SelectContext(ctx,
&rows,
getSignalInfoMapQry,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
); err != nil {
return nil, err
}
for i := 0; i < len(rows); i++ {
rows[i].ShardID = filter.ShardID
rows[i].NamespaceID = filter.NamespaceID
rows[i].WorkflowID = filter.WorkflowID
rows[i].RunID = filter.RunID
}
return rows, nil
}
// DeleteFromSignalInfoMaps deletes one or more rows from signal_info_maps table
func (mdb *db) DeleteFromSignalInfoMaps(
ctx context.Context,
filter sqlplugin.SignalInfoMapsFilter,
) (sql.Result, error) {
query, args, err := sqlx.In(
deleteKeyInSignalInfoMapQry,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
filter.InitiatedIDs,
)
if err != nil {
return nil, err
}
return mdb.conn.ExecContext(ctx,
mdb.conn.Rebind(query),
args...,
)
}
// DeleteAllFromSignalInfoMaps deletes all rows from signal_info_maps table
func (mdb *db) DeleteAllFromSignalInfoMaps(
ctx context.Context,
filter sqlplugin.SignalInfoMapsAllFilter,
) (sql.Result, error) {
return mdb.conn.ExecContext(ctx,
deleteSignalInfoMapQry,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
)
}
const (
deleteAllSignalsRequestedSetQry = `DELETE FROM signals_requested_sets
WHERE
shard_id = ? AND
namespace_id = ? AND
workflow_id = ? AND
run_id = ?
`
createSignalsRequestedSetQry = `INSERT INTO signals_requested_sets
(shard_id, namespace_id, workflow_id, run_id, signal_id) VALUES
(:shard_id, :namespace_id, :workflow_id, :run_id, :signal_id)
ON DUPLICATE KEY UPDATE signal_id = VALUES (signal_id)`
deleteSignalsRequestedSetQry = `DELETE FROM signals_requested_sets
WHERE
shard_id = ? AND
namespace_id = ? AND
workflow_id = ? AND
run_id = ? AND
signal_id IN ( ? )`
getSignalsRequestedSetQry = `SELECT signal_id FROM signals_requested_sets WHERE
shard_id = ? AND
namespace_id = ? AND
workflow_id = ? AND
run_id = ?`
)
// InsertIntoSignalsRequestedSets inserts one or more rows into signals_requested_sets table
func (mdb *db) ReplaceIntoSignalsRequestedSets(
ctx context.Context,
rows []sqlplugin.SignalsRequestedSetsRow,
) (sql.Result, error) {
return mdb.conn.NamedExecContext(ctx,
createSignalsRequestedSetQry,
rows,
)
}
// SelectAllFromSignalsRequestedSets reads all rows from signals_requested_sets table
func (mdb *db) SelectAllFromSignalsRequestedSets(
ctx context.Context,
filter sqlplugin.SignalsRequestedSetsAllFilter,
) ([]sqlplugin.SignalsRequestedSetsRow, error) {
var rows []sqlplugin.SignalsRequestedSetsRow
if err := mdb.conn.SelectContext(ctx,
&rows,
getSignalsRequestedSetQry,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
); err != nil {
return nil, err
}
for i := 0; i < len(rows); i++ {
rows[i].ShardID = filter.ShardID
rows[i].NamespaceID = filter.NamespaceID
rows[i].WorkflowID = filter.WorkflowID
rows[i].RunID = filter.RunID
}
return rows, nil
}
// DeleteFromSignalsRequestedSets deletes one or more rows from signals_requested_sets table
func (mdb *db) DeleteFromSignalsRequestedSets(
ctx context.Context,
filter sqlplugin.SignalsRequestedSetsFilter,
) (sql.Result, error) {
query, args, err := sqlx.In(
deleteSignalsRequestedSetQry,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
filter.SignalIDs,
)
if err != nil {
return nil, err
}
return mdb.conn.ExecContext(ctx,
mdb.conn.Rebind(query),
args...,
)
}
// DeleteAllFromSignalsRequestedSets deletes all rows from signals_requested_sets table
func (mdb *db) DeleteAllFromSignalsRequestedSets(
ctx context.Context,
filter sqlplugin.SignalsRequestedSetsAllFilter,
) (sql.Result, error) {
return mdb.conn.ExecContext(ctx,
deleteAllSignalsRequestedSetQry,
filter.ShardID,
filter.NamespaceID,
filter.WorkflowID,
filter.RunID,
)
}