We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1ee2e6 commit 97592e6Copy full SHA for 97592e6
src/backend/utils/mb/conversion_procs/regress_epilogue
@@ -2,4 +2,4 @@
2
-- return to the super user
3
--
4
RESET SESSION AUTHORIZATION;
5
-DROP USER foo;
+DROP USER conversion_test_user;
src/backend/utils/mb/conversion_procs/regress_prolog
@@ -1,8 +1,8 @@
1
-- 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;
6
CREATE CONVERSION myconv FOR 'LATIN1' TO 'UNICODE' FROM iso8859_1_to_utf8;
7
8
-- cannot make same name conversion in same schema
0 commit comments