Skip to content

Commit f318389

Browse files
committed
add pgmq migration test script
1 parent f7cdd08 commit f318389

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

nix/tests/migrations/pgmq.sql

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
select
2+
pgmq.create('Foo');
3+
4+
select
5+
*
6+
from
7+
pgmq.send(
8+
queue_name:='Foo',
9+
msg:='{"foo": "bar1"}'
10+
);
11+
12+

0 commit comments

Comments
 (0)