1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-13 16:22:44 +03:00

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

This commit is contained in:
Tatsuo Ishii
2002-09-04 02:42:34 +00:00
parent f1ee2e69e6
commit 97592e6a6c
2 changed files with 3 additions and 3 deletions

View File

@@ -2,4 +2,4 @@
-- return to the super user
--
RESET SESSION AUTHORIZATION;
DROP USER foo;
DROP USER conversion_test_user;

View File

@@ -1,8 +1,8 @@
--
-- create user defined conversion
--
CREATE USER foo WITH NOCREATEDB NOCREATEUSER;
SET SESSION AUTHORIZATION foo;
CREATE USER conversion_test_user WITH NOCREATEDB NOCREATEUSER;
SET SESSION AUTHORIZATION conversion_test_user;
CREATE CONVERSION myconv FOR 'LATIN1' TO 'UNICODE' FROM iso8859_1_to_utf8;
--
-- cannot make same name conversion in same schema