We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1772a43 commit 55957eaCopy full SHA for 55957ea
nix/tests/expected/realtime.out
@@ -0,0 +1,16 @@
1
+-- only a publication from supabase realtime is expected
2
+SELECT
3
+ pubname AS publication_name,
4
+ pubowner::regrole AS owner,
5
+ puballtables,
6
+ pubinsert,
7
+ pubupdate,
8
+ pubdelete,
9
+ pubtruncate
10
+FROM
11
+ pg_publication;
12
+ publication_name | owner | puballtables | pubinsert | pubupdate | pubdelete | pubtruncate
13
+-------------------+----------+--------------+-----------+-----------+-----------+-------------
14
+ supabase_realtime | postgres | f | t | t | t | t
15
+(1 row)
16
+
nix/tests/sql/realtime.sql
@@ -0,0 +1,11 @@
0 commit comments