1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-07 19:06:32 +03:00

Follow the rule that regression-test-created roles are named "regress_xxx".

Commit 1c5d9270e had not gotten the word about this.  (For previous
context, see 18555b132.)
This commit is contained in:
Tom Lane
2019-06-25 22:53:42 -04:00
parent d993e0fb82
commit c360477d2e
2 changed files with 65 additions and 65 deletions

View File

@@ -1048,11 +1048,11 @@ select 1/(15-unique2) from tenk1 order by unique2 limit 19;
\unset FETCH_COUNT
create schema testpart;
create role testrole_partitioning;
create role regress_partitioning_role;
alter schema testpart owner to testrole_partitioning;
alter schema testpart owner to regress_partitioning_role;
set role to testrole_partitioning;
set role to regress_partitioning_role;
-- run test inside own schema and hide other partitions
set search_path to testpart;
@@ -1114,4 +1114,4 @@ drop schema testpart;
set search_path to default;
set role to default;
drop role testrole_partitioning;
drop role regress_partitioning_role;