diff options
| author | Simon Riggs | 2017-03-28 14:05:21 +0000 |
|---|---|---|
| committer | Simon Riggs | 2017-03-28 14:05:21 +0000 |
| commit | ff539da31691f2cd2694360250571c5c5fb7415e (patch) | |
| tree | 494ffccc465ca33af0efd5dc764a169c66fb4bc1 /src/test | |
| parent | 4d33a7f2e714848ca7b5b7ef8e244eead078ca13 (diff) | |
Cleanup slots during drop database
Automatically drop all logical replication slots associated with a
database when the database is dropped. Previously we threw an ERROR
if a slot existed. Now we throw ERROR only if a slot is active in
the database being dropped.
Craig Ringer
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/recovery/t/006_logical_decoding.pl | 40 | ||||
| -rw-r--r-- | src/test/recovery/t/010_logical_decoding_timelines.pl | 30 |
2 files changed, 66 insertions, 4 deletions
diff --git a/src/test/recovery/t/006_logical_decoding.pl b/src/test/recovery/t/006_logical_decoding.pl index 66d5e4ad09f..bf9b50a6a35 100644 --- a/src/test/recovery/t/006_logical_decoding.pl +++ b/src/test/recovery/t/006_logical_decoding.pl @@ -7,7 +7,7 @@ use strict; use warnings; use PostgresNode; use TestLib; -use Test::More tests => 5; +use Test::More tests => 16; # Initialize master node my $node_master = get_new_node('master'); @@ -54,7 +54,7 @@ my $stdout_sql = $node_master->safe_psql('postgres', qq[SELECT data FROM pg_logi is($stdout_sql, $expected, 'got expected output from SQL decoding session'); my $endpos = $node_master->safe_psql('postgres', "SELECT location FROM pg_logical_slot_peek_changes('test_slot', NULL, NULL) ORDER BY location DESC LIMIT 1;"); -diag "waiting to replay $endpos"; +print "waiting to replay $endpos\n"; my $stdout_recv = $node_master->pg_recvlogical_upto('postgres', 'test_slot', $endpos, 10, 'include-xids' => '0', 'skip-empty-xacts' => '1'); chomp($stdout_recv); @@ -64,5 +64,41 @@ $stdout_recv = $node_master->pg_recvlogical_upto('postgres', 'test_slot', $endpo chomp($stdout_recv); is($stdout_recv, '', 'pg_recvlogical acknowledged changes, nothing pending on slot'); +$node_master->safe_psql('postgres', 'CREATE DATABASE otherdb'); + +is($node_master->psql('otherdb', "SELECT location FROM pg_logical_slot_peek_changes('test_slot', NULL, NULL) ORDER BY location DESC LIMIT 1;"), 3, + 'replaying logical slot from another database fails'); + +$node_master->safe_psql('otherdb', qq[SELECT pg_create_logical_replication_slot('otherdb_slot', 'test_decoding');]); + +# make sure you can't drop a slot while active +my $pg_recvlogical = IPC::Run::start(['pg_recvlogical', '-d', $node_master->connstr('otherdb'), '-S', 'otherdb_slot', '-f', '-', '--start']); +$node_master->poll_query_until('otherdb', "SELECT EXISTS (SELECT 1 FROM pg_replication_slots WHERE slot_name = 'otherdb_slot' AND active_pid IS NOT NULL)"); +is($node_master->psql('postgres', 'DROP DATABASE otherdb'), 3, + 'dropping a DB with inactive logical slots fails'); +$pg_recvlogical->kill_kill; +is($node_master->slot('otherdb_slot')->{'slot_name'}, undef, + 'logical slot still exists'); + +$node_master->poll_query_until('otherdb', "SELECT EXISTS (SELECT 1 FROM pg_replication_slots WHERE slot_name = 'otherdb_slot' AND active_pid IS NULL)"); +is($node_master->psql('postgres', 'DROP DATABASE otherdb'), 0, + 'dropping a DB with inactive logical slots succeeds'); +is($node_master->slot('otherdb_slot')->{'slot_name'}, undef, + 'logical slot was actually dropped with DB'); + +# Restarting a node with wal_level = logical that has existing +# slots must succeed, but decoding from those slots must fail. +$node_master->safe_psql('postgres', 'ALTER SYSTEM SET wal_level = replica'); +is($node_master->safe_psql('postgres', 'SHOW wal_level'), 'logical', 'wal_level is still logical before restart'); +$node_master->restart; +is($node_master->safe_psql('postgres', 'SHOW wal_level'), 'replica', 'wal_level is replica'); +isnt($node_master->slot('test_slot')->{'catalog_xmin'}, '0', + 'restored slot catalog_xmin is nonzero'); +is($node_master->psql('postgres', qq[SELECT pg_logical_slot_get_changes('test_slot', NULL, NULL);]), 3, + 'reading from slot with wal_level < logical fails'); +is($node_master->psql('postgres', q[SELECT pg_drop_replication_slot('test_slot')]), 0, + 'can drop logical slot while wal_level = replica'); +is($node_master->slot('test_slot')->{'catalog_xmin'}, '', 'slot was dropped'); + # done with the node $node_master->stop; diff --git a/src/test/recovery/t/010_logical_decoding_timelines.pl b/src/test/recovery/t/010_logical_decoding_timelines.pl index 4561a06143b..b618132e2b7 100644 --- a/src/test/recovery/t/010_logical_decoding_timelines.pl +++ b/src/test/recovery/t/010_logical_decoding_timelines.pl @@ -15,12 +15,15 @@ # This module uses the first approach to show that timeline following # on a logical slot works. # +# (For convenience, it also tests some recovery-related operations +# on logical slots). +# use strict; use warnings; use PostgresNode; use TestLib; -use Test::More tests => 10; +use Test::More tests => 13; use RecursiveCopy; use File::Copy; use IPC::Run (); @@ -50,6 +53,16 @@ $node_master->safe_psql('postgres', $node_master->safe_psql('postgres', "CREATE TABLE decoding(blah text);"); $node_master->safe_psql('postgres', "INSERT INTO decoding(blah) VALUES ('beforebb');"); + +# We also want to verify that DROP DATABASE on a standby with a logical +# slot works. This isn't strictly related to timeline following, but +# the only way to get a logical slot on a standby right now is to use +# the same physical copy trick, so: +$node_master->safe_psql('postgres', 'CREATE DATABASE dropme;'); +$node_master->safe_psql('dropme', +"SELECT pg_create_logical_replication_slot('dropme_slot', 'test_decoding');" +); + $node_master->safe_psql('postgres', 'CHECKPOINT;'); my $backup_name = 'b1'; @@ -68,6 +81,17 @@ $node_replica->append_conf( $node_replica->start; +# If we drop 'dropme' on the master, the standby should drop the +# db and associated slot. +is($node_master->psql('postgres', 'DROP DATABASE dropme'), 0, + 'dropped DB with logical slot OK on master'); +$node_master->wait_for_catchup($node_replica, 'replay', $node_master->lsn('insert')); +is($node_replica->safe_psql('postgres', q[SELECT 1 FROM pg_database WHERE datname = 'dropme']), '', + 'dropped DB dropme on standby'); +is($node_master->slot('dropme_slot')->{'slot_name'}, undef, + 'logical slot was actually dropped on standby'); + +# Back to testing failover... $node_master->safe_psql('postgres', "SELECT pg_create_logical_replication_slot('after_basebackup', 'test_decoding');" ); @@ -99,10 +123,13 @@ isnt($phys_slot->{'catalog_xmin'}, '', cmp_ok($phys_slot->{'xmin'}, '>=', $phys_slot->{'catalog_xmin'}, 'xmin on physical slot must not be lower than catalog_xmin'); +$node_master->safe_psql('postgres', 'CHECKPOINT'); + # Boom, crash $node_master->stop('immediate'); $node_replica->promote; +print "waiting for replica to come up\n"; $node_replica->poll_query_until('postgres', "SELECT NOT pg_is_in_recovery();"); @@ -154,5 +181,4 @@ $stdout = $node_replica->pg_recvlogical_upto('postgres', 'before_basebackup', chomp($stdout); is($stdout, $final_expected_output_bb, 'got same output from walsender via pg_recvlogical on before_basebackup'); -# We don't need the standby anymore $node_replica->teardown_node(); |
