diff options
author | Alvaro Herrera | 2016-03-30 23:46:01 +0000 |
---|---|---|
committer | Alvaro Herrera | 2016-03-30 23:48:24 +0000 |
commit | 3a3b309041b0f30066f0b6cb6640563b6ea27cde (patch) | |
tree | c85e411c3f27b9ee3bb7234f9697bfcf9b9fd3fa /src | |
parent | 24c5f1a103ce6656a5cb430d9a996c34e61ab2a5 (diff) |
I forgot the alternate expected file in previous commit
Without this, the test_slot_timelines modules fails "make installcheck"
because the required feature is not enabled in a stock server.
Per buildfarm
Diffstat (limited to 'src')
-rw-r--r-- | src/test/modules/test_slot_timelines/expected/load_extension_1.out | 7 |
1 files changed, 7 insertions, 0 deletions
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 index 00000000000..bf2abefb6ef --- /dev/null +++ b/src/test/modules/test_slot_timelines/expected/load_extension_1.out @@ -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 |