aboutsummaryrefslogtreecommitdiff
path: root/src/test/regress/expected/conversion.out
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/regress/expected/conversion.out')
-rw-r--r--src/test/regress/expected/conversion.out4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/conversion.out b/src/test/regress/expected/conversion.out
index 5ec1adf12f8..622fccaacd2 100644
--- a/src/test/regress/expected/conversion.out
+++ b/src/test/regress/expected/conversion.out
@@ -8,7 +8,7 @@ CREATE CONVERSION myconv FOR 'LATIN1' TO 'UNICODE' FROM iso8859_1_to_utf8;
-- cannot make same name conversion in same schema
--
CREATE CONVERSION myconv FOR 'LATIN1' TO 'UNICODE' FROM iso8859_1_to_utf8;
-ERROR: conversion name "myconv" already exists
+ERROR: conversion "myconv" already exists
--
-- create default conversion with qualified name
--
@@ -17,7 +17,7 @@ CREATE DEFAULT CONVERSION public.mydef FOR 'LATIN1' TO 'UNICODE' FROM iso8859_1_
-- cannot make default conversion with same shcema/for_encoding/to_encoding
--
CREATE DEFAULT CONVERSION public.mydef2 FOR 'LATIN1' TO 'UNICODE' FROM iso8859_1_to_utf8;
-ERROR: default conversion for LATIN1 to UNICODE already exists
+ERROR: default conversion for "LATIN1" to "UNICODE" already exists
--
-- drop user defined conversion
--