@@ -524,8 +524,8 @@ List of user mappings
524
524
(0 rows)
525
525
526
526
-- CREATE USER MAPPING
527
- CREATE USER MAPPING FOR baz SERVER s1; -- ERROR
528
- ERROR: role "baz " does not exist
527
+ CREATE USER MAPPING FOR regress_test_missing_role SERVER s1; -- ERROR
528
+ ERROR: role "regress_test_missing_role " does not exist
529
529
CREATE USER MAPPING FOR current_user SERVER s1; -- ERROR
530
530
ERROR: server "s1" does not exist
531
531
CREATE USER MAPPING FOR current_user SERVER s4;
@@ -565,8 +565,8 @@ RESET ROLE;
565
565
(7 rows)
566
566
567
567
-- ALTER USER MAPPING
568
- ALTER USER MAPPING FOR bob SERVER s4 OPTIONS (gotcha 'true'); -- ERROR
569
- ERROR: role "bob " does not exist
568
+ ALTER USER MAPPING FOR regress_test_missing_role SERVER s4 OPTIONS (gotcha 'true'); -- ERROR
569
+ ERROR: role "regress_test_missing_role " does not exist
570
570
ALTER USER MAPPING FOR user SERVER ss4 OPTIONS (gotcha 'true'); -- ERROR
571
571
ERROR: server "ss4" does not exist
572
572
ALTER USER MAPPING FOR public SERVER s5 OPTIONS (gotcha 'true'); -- ERROR
@@ -595,14 +595,14 @@ RESET ROLE;
595
595
(7 rows)
596
596
597
597
-- DROP USER MAPPING
598
- DROP USER MAPPING FOR bob SERVER s4; -- ERROR
599
- ERROR: role "bob " does not exist
598
+ DROP USER MAPPING FOR regress_test_missing_role SERVER s4; -- ERROR
599
+ ERROR: role "regress_test_missing_role " does not exist
600
600
DROP USER MAPPING FOR user SERVER ss4;
601
601
ERROR: server "ss4" does not exist
602
602
DROP USER MAPPING FOR public SERVER s7; -- ERROR
603
603
ERROR: user mapping "public" does not exist for the server
604
- DROP USER MAPPING IF EXISTS FOR bob SERVER s4;
605
- NOTICE: role "bob " does not exist, skipping
604
+ DROP USER MAPPING IF EXISTS FOR regress_test_missing_role SERVER s4;
605
+ NOTICE: role "regress_test_missing_role " does not exist, skipping
606
606
DROP USER MAPPING IF EXISTS FOR user SERVER ss4;
607
607
NOTICE: server does not exist, skipping
608
608
DROP USER MAPPING IF EXISTS FOR public SERVER s7;
0 commit comments