summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas2014-03-05 17:55:43 +0000
committerRobert Haas2014-03-05 17:55:43 +0000
commit97e899e1b85c7e42ab29cd09fc91cf57760bc1cb (patch)
treea6fdca71c8c28023f4da267d0b0f7e3bb3660db7
parent114b26c06fb93d74afd6993d4be49b5b3e960979 (diff)
Fix test_decoding regression test outputs.
Commit 6f37c08057685ee3c6c63222dba0dac012760dde removed whitespace from the SQL file but not the expected-output file, and commit 7e8db2dc420099df3fa73987cf2d2d6d1a609d86 changed the error message without updating the expected outputs.
-rw-r--r--contrib/test_decoding/expected/binary.out2
-rw-r--r--contrib/test_decoding/expected/ddl.out2
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/test_decoding/expected/binary.out b/contrib/test_decoding/expected/binary.out
index 3409d9d4265..4164784ab34 100644
--- a/contrib/test_decoding/expected/binary.out
+++ b/contrib/test_decoding/expected/binary.out
@@ -14,7 +14,7 @@ SELECT data FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'for
-- fails, binary plugin, textual consumer
SELECT data FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'force-binary', '1');
-ERROR: output plugin cannot produce text output
+ERROR: output plugin cannot produce binary output
-- succeeds, textual plugin, binary consumer
SELECT data FROM pg_logical_slot_get_binary_changes('regression_slot', NULL, NULL, 'force-binary', '0');
data
diff --git a/contrib/test_decoding/expected/ddl.out b/contrib/test_decoding/expected/ddl.out
index 986f504effb..0dff60e92a6 100644
--- a/contrib/test_decoding/expected/ddl.out
+++ b/contrib/test_decoding/expected/ddl.out
@@ -33,7 +33,7 @@ SELECT pg_drop_replication_slot('regression_slot');
-- fail
SELECT pg_drop_replication_slot('regression_slot');
ERROR: replication slot "regression_slot" does not exist
--- check that we're detecting a streaming rep slot used for logical decoding
+-- check that we're detecting a streaming rep slot used for logical decoding
SELECT 'init' FROM pg_create_physical_replication_slot('repl');
?column?
----------