File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -326,6 +326,7 @@ REGRESSCHECKS= \
326326 catalog \
327327 terminate \
328328 skipchanges \
329+ pgstatreplicationslots \
329330 $(DDLREGRESSCHECKS ) \
330331 dml/basic dml/contrib dml/delete_pk dml/extended dml/missing_pk dml/toasted \
331332 $(EXTRAREGRESSCHECKS ) \
Original file line number Diff line number Diff line change 1+ --
2+ -- Access the extended bdr.pg_replication_slots view
3+ -- with the data backported from 9.5 and 9.6.
4+ --
5+ SELECT 1
6+ FROM pg_stat_replication
7+ INNER JOIN bdr.pg_replication_slots USING (pid)
8+ WHERE confirmed_flush_lsn IS NOT NULL;
9+ ?column?
10+ ----------
11+ 1
12+ 1
13+ (2 rows)
14+
Original file line number Diff line number Diff line change 1+ --
2+ -- Access the extended bdr.pg_replication_slots view
3+ -- with the data backported from 9.5 and 9.6.
4+ --
5+
6+ SELECT 1
7+ FROM pg_stat_replication
8+ INNER JOIN bdr .pg_replication_slots USING (pid)
9+ WHERE confirmed_flush_lsn IS NOT NULL ;
You can’t perform that action at this time.
0 commit comments