@@ -524,8 +524,8 @@ List of user mappings
524524(0 rows)
525525
526526-- CREATE USER MAPPING
527- CREATE USER MAPPING FORbaz SERVER s1; -- ERROR
528- ERROR: role "baz " does not exist
527+ CREATE USER MAPPING FORregress_test_missing_role SERVER s1; -- ERROR
528+ ERROR: role "regress_test_missing_role " does not exist
529529CREATE USER MAPPING FOR current_user SERVER s1; -- ERROR
530530ERROR: server "s1" does not exist
531531CREATE USER MAPPING FOR current_user SERVER s4;
@@ -565,8 +565,8 @@ RESET ROLE;
565565(7 rows)
566566
567567-- ALTER USER MAPPING
568- ALTER USER MAPPING FORbob SERVER s4 OPTIONS (gotcha 'true'); -- ERROR
569- ERROR: role "bob " does not exist
568+ ALTER USER MAPPING FORregress_test_missing_role SERVER s4 OPTIONS (gotcha 'true'); -- ERROR
569+ ERROR: role "regress_test_missing_role " does not exist
570570ALTER USER MAPPING FOR user SERVER ss4 OPTIONS (gotcha 'true'); -- ERROR
571571ERROR: server "ss4" does not exist
572572ALTER USER MAPPING FOR public SERVER s5 OPTIONS (gotcha 'true'); -- ERROR
@@ -595,14 +595,14 @@ RESET ROLE;
595595(7 rows)
596596
597597-- DROP USER MAPPING
598- DROP USER MAPPING FORbob SERVER s4; -- ERROR
599- ERROR: role "bob " does not exist
598+ DROP USER MAPPING FORregress_test_missing_role SERVER s4; -- ERROR
599+ ERROR: role "regress_test_missing_role " does not exist
600600DROP USER MAPPING FOR user SERVER ss4;
601601ERROR: server "ss4" does not exist
602602DROP USER MAPPING FOR public SERVER s7; -- ERROR
603603ERROR: user mapping "public" does not exist for the server
604- DROP USER MAPPING IF EXISTS FORbob SERVER s4;
605- NOTICE: role "bob " does not exist, skipping
604+ DROP USER MAPPING IF EXISTS FORregress_test_missing_role SERVER s4;
605+ NOTICE: role "regress_test_missing_role " does not exist, skipping
606606DROP USER MAPPING IF EXISTS FOR user SERVER ss4;
607607NOTICE: server does not exist, skipping
608608DROP USER MAPPING IF EXISTS FOR public SERVER s7;