]> granicus.if.org Git - postgresql/commitdiff
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 da8238b9f393a32a383a78e809572ebd875e8112..fcfb45dce7c7157f1327a13b73c3ed2a609cbd25 100644 (file)
@@ -2,4 +2,4 @@
 -- return to the super user
 --
 RESET SESSION AUTHORIZATION;
-DROP USER foo;
+DROP USER conversion_test_user;
index 62a90d20b6373b20e7b2b20df9b6cecf752ea560..5136019d62dc0548849c30e44baf3f1264f4e98b 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