OSDN Git Service

Refrect the changes to src/test/regress/sql/conversion.sql By Tom.
authorTatsuo Ishii <ishii@postgresql.org>
Wed, 4 Sep 2002 02:42:34 +0000 (02:42 +0000)
committerTatsuo Ishii <ishii@postgresql.org>
Wed, 4 Sep 2002 02:42:34 +0000 (02:42 +0000)
src/backend/utils/mb/conversion_procs/regress_epilogue
src/backend/utils/mb/conversion_procs/regress_prolog

index da8238b..fcfb45d 100644 (file)
@@ -2,4 +2,4 @@
 -- return to the super user
 --
 RESET SESSION AUTHORIZATION;
-DROP USER foo;
+DROP USER conversion_test_user;
index 62a90d2..5136019 100644 (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