diff options
author | Peter Eisentraut | 2014-09-05 05:20:33 +0000 |
---|---|---|
committer | Peter Eisentraut | 2014-09-05 05:25:27 +0000 |
commit | 303f4d1012a20102d9fec6f486da0b381184a718 (patch) | |
tree | 6affe514b61f198d1f53914341da0bd051f944e6 /contrib/test_decoding | |
parent | d85e7fac415722bccc83dc96baccdb398ea5a2f4 (diff) |
Assorted message fixes and improvements
Diffstat (limited to 'contrib/test_decoding')
-rw-r--r-- | contrib/test_decoding/expected/ddl.out | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/test_decoding/expected/ddl.out b/contrib/test_decoding/expected/ddl.out index e1a4a590283..780120d7314 100644 --- a/contrib/test_decoding/expected/ddl.out +++ b/contrib/test_decoding/expected/ddl.out @@ -12,7 +12,7 @@ ERROR: replication slot "regression_slot" already exists -- fail because of an invalid name SELECT 'init' FROM pg_create_logical_replication_slot('Invalid Name', 'test_decoding'); ERROR: replication slot name "Invalid Name" contains invalid character -HINT: Replication slot names may only contain letters, numbers and the underscore character. +HINT: Replication slot names may only contain letters, numbers, and the underscore character. -- fail twice because of an invalid parameter values SELECT 'init' FROM pg_logical_slot_get_changes('regression_slot', NULL, NULL, 'include-xids', 'frakbar'); ERROR: could not parse value "frakbar" for parameter "include-xids" |