Commit 97592e6a authored by Tatsuo Ishii's avatar Tatsuo Ishii

Refrect the changes to src/test/regress/sql/conversion.sql By Tom.

parent f1ee2e69
...@@ -2,4 +2,4 @@ ...@@ -2,4 +2,4 @@
-- return to the super user -- return to the super user
-- --
RESET SESSION AUTHORIZATION; RESET SESSION AUTHORIZATION;
DROP USER foo; DROP USER conversion_test_user;
-- --
-- create user defined conversion -- create user defined conversion
-- --
CREATE USER foo WITH NOCREATEDB NOCREATEUSER; CREATE USER conversion_test_user WITH NOCREATEDB NOCREATEUSER;
SET SESSION AUTHORIZATION foo; SET SESSION AUTHORIZATION conversion_test_user;
CREATE CONVERSION myconv FOR 'LATIN1' TO 'UNICODE' FROM iso8859_1_to_utf8; CREATE CONVERSION myconv FOR 'LATIN1' TO 'UNICODE' FROM iso8859_1_to_utf8;
-- --
-- cannot make same name conversion in same schema -- cannot make same name conversion in same schema
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment