aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2016-04-01 18:36:07 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2016-04-01 18:36:07 -0300
commitf07d18b6e94da6ef93dc4e00096f1e7542814fdb (patch)
treeb4c6b17bf743ea7626d16040d9dcd8854c34d675
parent3d3bf62f30200500637b24fdb7b992a99f9704c3 (diff)
downloadpostgresql-f07d18b6e94da6ef93dc4e00096f1e7542814fdb.tar.gz
postgresql-f07d18b6e94da6ef93dc4e00096f1e7542814fdb.zip
test_slot_timelines: Fix alternate expected output
-rw-r--r--src/test/modules/test_slot_timelines/expected/load_extension_1.out2
1 files changed, 1 insertions, 1 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
index bf2abefb6ef..0db21e46d90 100644
--- a/src/test/modules/test_slot_timelines/expected/load_extension_1.out
+++ b/src/test/modules/test_slot_timelines/expected/load_extension_1.out
@@ -1,7 +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());
+SELECT test_slot_timelines_advance_logical_slot('test_slot', txid_current()::text::xid, txid_current()::text::xid, 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