Commit c360477d authored by Tom Lane's avatar Tom Lane

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

Commit 1c5d9270 had not gotten the word about this.  (For previous
context, see 18555b13.)
parent d993e0fb
This diff is collapsed.
...@@ -1048,11 +1048,11 @@ select 1/(15-unique2) from tenk1 order by unique2 limit 19; ...@@ -1048,11 +1048,11 @@ select 1/(15-unique2) from tenk1 order by unique2 limit 19;
\unset FETCH_COUNT \unset FETCH_COUNT
create schema testpart; 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 -- run test inside own schema and hide other partitions
set search_path to testpart; set search_path to testpart;
...@@ -1114,4 +1114,4 @@ drop schema testpart; ...@@ -1114,4 +1114,4 @@ drop schema testpart;
set search_path to default; set search_path to default;
set role to default; set role to default;
drop role testrole_partitioning; drop role regress_partitioning_role;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment