I forgot the alternate expected file in previous commit
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Wed, 30 Mar 2016 23:46:01 +0000 (20:46 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Wed, 30 Mar 2016 23:48:24 +0000 (20:48 -0300)
Without this, the test_slot_timelines modules fails "make installcheck"
because the required feature is not enabled in a stock server.

Per buildfarm

src/test/modules/test_slot_timelines/expected/load_extension_1.out [new file with mode: 0644]

diff --git a/src/test/modules/test_slot_timelines/expected/load_extension_1.out b/src/test/modules/test_slot_timelines/expected/load_extension_1.out
new file mode 100644 (file)
index 0000000..bf2abef
--- /dev/null
@@ -0,0 +1,7 @@
+CREATE EXTENSION test_slot_timelines;
+SELECT test_slot_timelines_create_logical_slot('test_slot', 'test_decoding');
+ERROR:  replication slots can only be used if max_replication_slots > 0
+SELECT test_slot_timelines_advance_logical_slot('test_slot', txid_current(), txid_current(), pg_current_xlog_location(), pg_current_xlog_location());
+ERROR:  replication slots can only be used if max_replication_slots > 0
+SELECT pg_drop_replication_slot('test_slot');
+ERROR:  replication slots can only be used if max_replication_slots > 0