-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpq_test.go
790 lines (635 loc) · 19.5 KB
/
pq_test.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
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
package pgqueue
import (
"context"
"database/sql"
"errors"
"fmt"
"os"
"strings"
"testing"
"time"
"github.com/canastic/chantest"
"github.com/canastic/pgqueue/stopcontext"
"github.com/canastic/ulidx"
"github.com/lib/pq"
"github.com/stretchr/testify/assert"
"github.com/tcard/gock"
"github.com/tcard/sqler"
)
var (
postgresConnString = os.Getenv("PGQUEUE_TEST_POSTGRES_CONNSTRING_PATTERN")
baseDB = os.Getenv("PGQUEUE_TEST_BASE_DB")
enabled = os.Getenv("PGQUEUE_TEST_ENABLED") == "true"
)
func TestPQBasicOrdered(t *testing.T) {
if !enabled {
t.Skip("Set PGQUEUE_TEST_ENABLED=true to run")
return
}
g, wait := gock.Bundle()
defer wait()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
db, cleanupDB := createTestDB(ctx, t)
defer cleanupDB()
// Set up a bunch of consumers. Each consumer function is actually a bunch
// of concurrent consumers for the same subscription.
//
// There will be 3 queued messages: "pending message n"
consumers, cleanupConsumers := setupConsumersTest(t, ctx, g, db, Ordered)
defer cleanupConsumers()
// First test: deliver the first message, then publish some incoming
// messages, then ack the delivery. Pending messages should arrive before
// incoming messages do.
pendingAcks := map[*testConsumer]chan<- Ack{}
for _, c := range consumers {
d := chantest.Before(1*time.Second).AssertRecv(t, c.deliveries).(testStringDelivered)
assert.Equal(t, "pending message 0", d.payload, "subscription %q", c.subscription)
pendingAcks[c] = d.ack
}
for i := 0; i < 3; i++ {
err := publishMessage(ctx, db, fmt.Sprintf("incoming message %d", i))
assert.NoError(t, err)
}
for c, ack := range pendingAcks {
chantest.AssertSend(t, ack, OK, "subscription %q", c.subscription)
}
// Now let's receive and ack all queued messages, in order.
for _, c := range consumers {
for _, expected := range []string{
"pending message 1",
"pending message 2",
"incoming message 0",
"incoming message 1",
"incoming message 2",
} {
d := chantest.AssertRecv(t, c.deliveries, "subscription %q msg %q", c.subscription, expected).(testStringDelivered)
assert.Equal(t, expected, d.payload, "subscription %q msg %q", c.subscription, expected)
chantest.AssertSend(t, d.ack, OK, "subscription %q msg %q", c.subscription, expected)
}
// Now the queue should be empty.
chantest.AssertNoRecv(t, c.deliveries, "subscription %q", c.subscription)
}
// Let's publish a new message once the queue is empty, and process it.
err := publishMessage(ctx, db, "new incoming message")
assert.NoError(t, err)
for _, c := range consumers {
d := chantest.AssertRecv(t, c.deliveries, "subscription %q", c.subscription).(testStringDelivered)
assert.Equal(t, "new incoming message", d.payload, "subscription %q", c.subscription)
chantest.AssertSend(t, d.ack, OK, "subscription %q", c.subscription)
}
// Let's publish and deliver a message but not ACK it, to test that we get it
// delivered again when we restart the consumers.
err = publishMessage(ctx, db, "incoming message after restart")
assert.NoError(t, err)
for _, c := range consumers {
d := chantest.AssertRecv(t, c.deliveries, "subscription %q", c.subscription).(testStringDelivered)
assert.Equal(t, "incoming message after restart", d.payload, "subscription %q", c.subscription)
c.kill()
startTestConsumer(t, ctx, g, c)
d = chantest.AssertRecv(t, c.deliveries, "subscription %q", c.subscription).(testStringDelivered)
assert.Equal(t, "incoming message after restart", d.payload, "subscription %q", c.subscription)
chantest.AssertSend(t, d.ack, OK, "subscription %q", c.subscription)
c.stop()
}
}
func TestPQBasicUnordered(t *testing.T) {
if !enabled {
t.Skip("Set PGQUEUE_TEST_ENABLED=true to run")
return
}
g, wait := gock.Bundle()
defer wait()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
db, cleanupDB := createTestDB(ctx, t)
defer cleanupDB()
// Set up a bunch of consumers. Each consumer function is actually a bunch
// of concurrent consumers for the same subscription.
//
// There will be 3 queued messages: "pending message n"
consumers, cleanupConsumers := setupConsumersTest(t, ctx, g, db, Unordered)
defer cleanupConsumers()
// First test: ack the first message, then publish some incoming messages.
assertsByConsumer := map[*testConsumer]receiveAssertions{}
for _, c := range consumers {
expected := []string{
"pending message 0",
"pending message 1",
"pending message 2",
}
asserts := unorderedExpecter(c, expected)
asserts.receive(t)
assertsByConsumer[c] = asserts
}
for i := 0; i < 3; i++ {
err := publishMessage(ctx, db, fmt.Sprintf("incoming message %d", i))
assert.NoError(t, err)
}
// Now let's receive and ack all queued messages, in random order.
for _, c := range consumers {
asserts := assertsByConsumer[c]
for range []string{
"pending message 1",
"pending message 2",
"incoming message 0",
"incoming message 1",
"incoming message 2",
} {
asserts.receive(t)
}
// Now the queue should be empty.
chantest.AssertNoRecv(t, c.deliveries, "subscription %q", c.subscription)
}
// Let's publish a new message once the queue is empty, and process it.
err := publishMessage(ctx, db, "new incoming message")
assert.NoError(t, err)
for _, c := range consumers {
asserts := assertsByConsumer[c]
asserts.receive(t)
}
// Let's publish and deliver a message but not consume it, to test that we get
// it delivered when we restart the consumers.
err = publishMessage(ctx, db, "incoming message after restart")
assert.NoError(t, err)
for _, c := range consumers {
asserts := assertsByConsumer[c]
c.kill()
startTestConsumer(t, ctx, g, c)
asserts.receive(t)
c.stop()
asserts.allReceived(t)
}
}
func TestPQMultipleRowsPerDelivery(t *testing.T) {
if !enabled {
t.Skip("Set PGQUEUE_TEST_ENABLED=true to run")
return
}
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
db, cleanupDB := createTestDB(ctx, t)
defer cleanupDB()
drv := newTestPQSubscriptionDriver(db, "test", Ordered)
consume, err := Subscribe(ctx, drv)
assert.NoError(t, err)
for i := 0; i < 5; i++ {
err := publishMessage(ctx, db, fmt.Sprintf("msg%d", i))
assert.NoError(t, err)
}
got := make(chan []string, 10)
ack := make(chan Ack, 1)
{
ctx, cancel := context.WithCancel(ctx)
assert.Error(t, context.Canceled, gock.Wait(func() error {
return consume(ctx, func() (unwrapInto interface{}, handle HandleFunc) {
messages := make([]string, 0, 3)
return &messages, func(ctx context.Context) (context.Context, Ack) {
got <- messages
return ctx, <-ack
}
})
}, func() error {
defer cancel()
msgs := chantest.Before(1*time.Second).AssertRecv(t, got).([]string)
assert.Equal(t, []string{"msg0", "msg1", "msg2"}, msgs)
chantest.AssertSend(t, ack, OK)
msgs = chantest.Before(1*time.Second).AssertRecv(t, got).([]string)
assert.Equal(t, []string{"msg3", "msg4"}, msgs)
chantest.AssertSend(t, ack, OK)
err := publishMessage(ctx, db, "msg5")
assert.NoError(t, err)
msgs = chantest.Before(1*time.Second).AssertRecv(t, got).([]string)
assert.Equal(t, []string{"msg5"}, msgs)
chantest.AssertSend(t, ack, OK)
chantest.AssertNoRecv(t, got)
return nil
}))
chantest.AssertNoRecv(t, got)
}
// Ensure ACK works: we don't get duplicated messages.
{
ctx, cancel := context.WithCancel(ctx)
consume, err := Subscribe(ctx, drv)
assert.NoError(t, err)
assert.Error(t, context.Canceled, gock.Wait(func() error {
return consume(ctx, func() (unwrapInto interface{}, handle HandleFunc) {
messages := make([]string, 0, 3)
return &messages, func(ctx context.Context) (context.Context, Ack) {
got <- messages
return ctx, <-ack
}
})
}, func() error {
defer cancel()
chantest.AssertNoRecv(t, got)
err := publishMessage(ctx, db, "msg6")
assert.NoError(t, err)
msgs := chantest.Before(1*time.Second).AssertRecv(t, got).([]string)
assert.Equal(t, []string{"msg6"}, msgs)
chantest.AssertSend(t, ack, OK)
chantest.AssertNoRecv(t, got)
return nil
}))
chantest.AssertNoRecv(t, got)
}
// Ensure requeue works.
err = publishMessage(ctx, db, "msg6")
assert.NoError(t, err)
err = publishMessage(ctx, db, "msg7")
assert.NoError(t, err)
err = publishMessage(ctx, db, "msg8")
assert.NoError(t, err)
err = publishMessage(ctx, db, "msg9")
assert.NoError(t, err)
{
ctx, cancel := context.WithCancel(ctx)
consume, err := Subscribe(ctx, drv)
assert.NoError(t, err)
assert.Error(t, context.Canceled, gock.Wait(func() error {
return consume(ctx, func() (unwrapInto interface{}, handle HandleFunc) {
messages := make([]string, 0, 3)
return &messages, func(ctx context.Context) (context.Context, Ack) {
got <- messages
return ctx, <-ack
}
})
}, func() error {
defer cancel()
msgs := chantest.Before(1*time.Second).AssertRecv(t, got).([]string)
assert.Equal(t, []string{"msg6", "msg7", "msg8"}, msgs)
chantest.AssertSend(t, ack, Requeue)
chantest.AssertNoRecv(t, got)
return nil
}))
chantest.AssertNoRecv(t, got)
}
{
ctx, cancel := context.WithCancel(ctx)
consume, err := Subscribe(ctx, drv)
assert.NoError(t, err)
assert.Error(t, context.Canceled, gock.Wait(func() error {
return consume(ctx, func() (unwrapInto interface{}, handle HandleFunc) {
messages := make([]string, 0, 3)
return &messages, func(ctx context.Context) (context.Context, Ack) {
got <- messages
return ctx, <-ack
}
})
}, func() error {
defer cancel()
msgs := chantest.Before(1*time.Second).AssertRecv(t, got).([]string)
assert.Equal(t, []string{"msg6", "msg7", "msg8"}, msgs)
chantest.AssertSend(t, ack, OK)
msgs = chantest.Before(1*time.Second).AssertRecv(t, got).([]string)
assert.Equal(t, []string{"msg9"}, msgs)
chantest.AssertSend(t, ack, OK)
chantest.AssertNoRecv(t, got)
return nil
}))
chantest.AssertNoRecv(t, got)
}
}
func setupConsumersTest(t *testing.T, ctx context.Context, g gock.GoFunc, db sqlxTestDB, order OrderGuarantee) (consumers map[string]*testConsumer, cleanup func()) {
// Concurrent consumers to test mutual exclusion.
const concurrentConsumersPerSubscription = 2
consumers = map[string]*testConsumer{}
cleanup = func() {}
for _, subscription := range []string{"foo", "bar"} {
var subConsume []ConsumeFunc
c := &testConsumer{
subscription: subscription,
consume: func(ctx context.Context, gh GetHandler) error {
g, wait := gock.Bundle()
for _, consume := range subConsume {
consume := consume
g(func() error {
return consume(ctx, gh)
})
}
return wait()
},
deliveries: make(chan testStringDelivered, concurrentConsumersPerSubscription),
}
consumers[subscription] = c
for i := 0; i < concurrentConsumersPerSubscription; i++ {
consume, err := Subscribe(ctx, newTestPQSubscriptionDriver(db, subscription, order))
assert.NoError(t, err)
subConsume = append(subConsume, consume)
}
}
for i := 0; i < 3; i++ {
err := publishMessage(ctx, db, fmt.Sprintf("pending message %d", i))
assert.NoError(t, err)
}
for _, c := range consumers {
startTestConsumer(t, ctx, g, c)
}
return consumers, cleanup
}
func startTestConsumer(t *testing.T, ctx context.Context, g gock.GoFunc, c *testConsumer) {
t.Helper()
ctx, cancel := context.WithCancel(ctx)
ctx, stop := stopcontext.WithStop(ctx)
done := make(chan struct{}, 1)
c.stop = func() {
t.Helper()
stop()
select {
case <-done:
case <-time.After(1 * time.Second):
t.Errorf("had to cancel subscription %q", c.subscription)
cancel()
}
select {
case <-done:
case <-time.After(1 * time.Second):
t.Errorf("subscription %q consumer not killed by context cancel", c.subscription)
}
}
c.kill = func() {
t.Helper()
cancel()
select {
case <-done:
case <-time.After(1 * time.Second):
t.Errorf("subscription %q consumer not killed by context cancel", c.subscription)
}
}
g(func() error {
defer close(done)
err := c.consume(ctx, func() (unwrapInto interface{}, handle HandleFunc) {
var payload string
return &payload, func(ctx context.Context) (context.Context, Ack) {
ack := make(chan Ack)
c.deliveries <- testStringDelivered{payload, ack}
return ctx, <-ack
}
})
if errors.Is(err, context.Canceled) {
err = nil
}
assert.NoError(t, err)
return nil
})
}
type receiveAssertions struct {
receive func(*testing.T)
allReceived func(*testing.T)
}
func unorderedExpecter(c *testConsumer, expectedPayloads []string) receiveAssertions {
expectedSet := map[string]struct{}{}
for _, expected := range expectedPayloads {
expectedSet[expected] = struct{}{}
}
deliveryCount := 0
assertReceive := func(t *testing.T) {
t.Helper()
d := chantest.Before(1*time.Second).AssertRecv(t, c.deliveries, "subscription %q delivery %d: timeout waiting for delivery receive", c.subscription, deliveryCount).(testStringDelivered)
delete(expectedSet, d.payload)
chantest.AssertSend(t, d.ack, OK, "subscription %q delivery %d: timeout waiting for ack send", c.subscription, deliveryCount)
deliveryCount++
}
assertAllReceived := func(t *testing.T) {
t.Helper()
assert.Len(t, expectedSet, 0)
}
return receiveAssertions{receive: assertReceive, allReceived: assertAllReceived}
}
type testStringDelivered struct {
payload string
ack chan<- Ack
}
type testConsumer struct {
subscription string
consume ConsumeFunc
deliveries chan testStringDelivered
stop func()
kill func()
}
// TODO: Exhaustive failure and concurrency tests.
type testPQSubscriptionDriver struct {
db sqler.DB
name string
}
func newTestPQSubscriptionDriver(db sqler.DB, name string, ordered OrderGuarantee) PQSubscriptionDriver {
drv := testPQSubscriptionDriver{
db: db,
name: name,
}
q := NewQueryWithArgs(`
SELECT serial, payload
FROM message_deliveries m
WHERE
subscription = $1
ORDER BY serial
`, name)
return PQSubscriptionDriver{
DB: db,
ExecInsertSubscription: drv.ExecInsertSubscription,
ListenForIncomingBaseQueries: q.PollIncomingDeliveries(10 * time.Millisecond),
PendingBaseQuery: q,
RowsToDeliveries: drv.RowsToDeliveries,
Ordered: ordered,
}
}
func (drv testPQSubscriptionDriver) ExecInsertSubscription(ctx context.Context) error {
_, err := drv.db.Exec(ctx, "INSERT INTO subscriptions (name) VALUES ($1);", drv.name)
return ignoreUniqueViolation(err)
}
func (drv testPQSubscriptionDriver) RowsToDeliveries(ctx context.Context, deliveries *DeliveryRowsIterator) error {
for deliveries.Next() {
delivery := deliveries.Yielded
var firstSerial int64
var lastSerial int64
delivery.Deliver(Delivery{
Unwrap: func(into interface{}) error {
var payload string
switch into := into.(type) {
case *string:
delivery.Rows.Next()
err := delivery.Rows.Scan(&lastSerial, &payload)
if err != nil {
return err
}
firstSerial = lastSerial
*into = payload
case *[]string:
limit := -1
if into != nil && *into != nil {
limit = cap(*into)
*into = (*into)[:0]
}
read := 0
for read < limit && delivery.Rows.Next() {
err := delivery.Rows.Scan(&lastSerial, &payload)
if err != nil {
return err
}
if read == 0 {
firstSerial = lastSerial
}
*into = append(*into, payload)
read++
}
default:
panic(into)
}
delivery.Rows.Close()
_, err := delivery.Exec(ctx, `
UPDATE message_deliveries SET `+MarkAsDeliveredSQL+`
WHERE
serial >= $1 AND serial <= $2
AND subscription = $3
`, firstSerial, lastSerial, drv.name)
if err != nil {
return fmt.Errorf("marking as delivered: %w", err)
}
return nil
},
OK: func(ctx context.Context) error {
_, err := delivery.Exec(ctx, `
DELETE FROM message_deliveries
WHERE
serial >= $1 AND serial <= $2
AND subscription = $3
`, firstSerial, lastSerial, drv.name)
return err
},
Requeue: func(ctx context.Context) error {
_, err := delivery.Exec(ctx, `
UPDATE message_deliveries SET `+UpdateLastAckSQL+`
WHERE
serial >= $1 AND serial <= $2
AND subscription = $3
`, firstSerial, lastSerial, drv.name)
return err
},
})
}
return nil
}
var nextSerial int64
func publishMessage(ctx context.Context, db sqler.DB, payload string) error {
tx, err := db.BeginTx(ctx, nil)
if err != nil {
return fmt.Errorf("beginning transaction: %w", err)
}
msgSerial := nextSerial
nextSerial++
_, err = tx.Exec(ctx, `
DECLARE subscriptions_cursor CURSOR FOR
SELECT name FROM subscriptions;
`)
if err != nil {
return fmt.Errorf("selecting subscriptions: %w", err)
}
defer tx.Exec(ctx, `CLOSE subscriptions_cursor;`)
for {
var sub string
err := tx.QueryRow(ctx, `FETCH NEXT FROM subscriptions_cursor;`).Scan(&sub)
if err != nil {
if errors.Is(err, sql.ErrNoRows) {
break
}
return fmt.Errorf("scanning subscription name: %w", err)
}
_, err = tx.Exec(ctx,
"INSERT INTO message_deliveries (serial, subscription, payload) VALUES ($1, $2, $3);",
msgSerial, sub, payload,
)
if ignoreUniqueViolation(err) != nil {
return fmt.Errorf("inserting pending delivery for subscription %q and message %d: %w", sub, msgSerial, err)
}
}
return tx.Commit()
}
func ignoreUniqueViolation(err error) error {
var pqErr *pq.Error
const uniqueViolation = "23505"
if errors.As(err, &pqErr) && pqErr.Code == uniqueViolation {
err = nil
}
return err
}
type sqlxTestDB struct {
sqler.DB
connStr string
}
func createTestDB(ctx context.Context, t *testing.T) (sqlxTestDB, func()) {
name := fmt.Sprintf("pgqueue_test_%s", strings.ToLower(ulidx.New()))
db, err := sqler.Open("postgres", fmt.Sprintf(postgresConnString, baseDB))
if err != nil {
panic(err)
}
t.Log("Creating database:", name)
_, err = db.Exec(ctx, "CREATE DATABASE "+name)
if err != nil {
panic(err)
}
cleanup := func() {
ctx, cancel := context.WithTimeout(ctx, 1*time.Second)
defer cancel()
_, err := db.Exec(ctx, "DROP DATABASE "+name)
assert.NoError(t, err)
if err == nil {
t.Log("Dropped database:", name)
}
}
connStr := fmt.Sprintf(postgresConnString, name)
testDB, err := sqler.Open("postgres", connStr)
if err != nil {
cleanup()
panic(err)
}
var oldCleanup = cleanup
cleanup = func() {
testDB.Close()
oldCleanup()
}
_, err = testDB.Exec(ctx, createScript)
if err != nil {
cleanup()
panic(err)
}
return sqlxTestDB{
DB: testDB,
connStr: connStr,
}, cleanup
}
const createScript = `
CREATE TABLE subscriptions
(
name text,
CONSTRAINT subscriptions_pkey PRIMARY KEY (name)
);
CREATE TABLE message_deliveries
(
subscription text NOT NULL,
serial bigint NOT NULL,
payload text NOT NULL,
created_at timestamptz DEFAULT timezone('utc', now()),
deliveries integer NOT NULL DEFAULT 0,
last_delivered_at timestamptz,
last_ack_at timestamptz,
CONSTRAINT message_deliveries_pkey PRIMARY KEY (subscription, serial)
);
ALTER TABLE "message_deliveries"
ADD FOREIGN KEY ("subscription") REFERENCES "subscriptions" ("name") ON DELETE RESTRICT ON UPDATE RESTRICT;
CREATE FUNCTION notify_message_delivery()
RETURNS trigger
LANGUAGE 'plpgsql'
NOT LEAKPROOF
AS $BODY$
DECLARE
BEGIN
PERFORM pg_notify('message:' || new.subscription, new.serial :: text);
RETURN new;
END
$BODY$;
CREATE TRIGGER notify_message_delivery
AFTER INSERT OR UPDATE
ON message_deliveries
FOR EACH ROW
EXECUTE PROCEDURE notify_message_delivery();
`