aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2019-06-25 22:53:42 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2019-06-25 22:53:42 -0400
commitc360477d2e2f65fdea64aa8bc94a6286d0883f7a (patch)
treed5d8c5d954c07a5b4d70edd66bd4866df21d673c
parentd993e0fb82ffaa15be72c1ac10403bfa06708069 (diff)
downloadpostgresql-c360477d2e2f65fdea64aa8bc94a6286d0883f7a.tar.gz
postgresql-c360477d2e2f65fdea64aa8bc94a6286d0883f7a.zip
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.)
-rw-r--r--src/test/regress/expected/psql.out122
-rw-r--r--src/test/regress/sql/psql.sql8
2 files changed, 65 insertions, 65 deletions
diff --git a/src/test/regress/expected/psql.out b/src/test/regress/expected/psql.out
index 35856bffdd2..4bcf0cc5dfd 100644
--- a/src/test/regress/expected/psql.out
+++ b/src/test/regress/expected/psql.out
@@ -4599,9 +4599,9 @@ last error message: division by zero
last error code: 22012
\unset FETCH_COUNT
create schema testpart;
-create role testrole_partitioning;
-alter schema testpart owner to testrole_partitioning;
-set role to testrole_partitioning;
+create role regress_partitioning_role;
+alter schema testpart owner to regress_partitioning_role;
+set role to regress_partitioning_role;
-- run test inside own schema and hide other partitions
set search_path to testpart;
create table testtable_apple(logdate date);
@@ -4614,25 +4614,25 @@ create index testpart_apple_index on testpart_apple(logdate);
create index testpart_orange_index on testpart_orange(logdate);
-- only partition related object should be displayed
\dP test*apple*
- List of partitioned relations
- Schema | Name | Owner | Type | Parent name | Table
-----------+----------------------+-----------------------+-------------------+-------------+----------------
- testpart | testpart_apple | testrole_partitioning | partitioned table | |
- testpart | testpart_apple_index | testrole_partitioning | partitioned index | | testpart_apple
+ List of partitioned relations
+ Schema | Name | Owner | Type | Parent name | Table
+----------+----------------------+---------------------------+-------------------+-------------+----------------
+ testpart | testpart_apple | regress_partitioning_role | partitioned table | |
+ testpart | testpart_apple_index | regress_partitioning_role | partitioned index | | testpart_apple
(2 rows)
\dPt test*apple*
- List of partitioned tables
- Schema | Name | Owner | Parent name
-----------+----------------+-----------------------+-------------
- testpart | testpart_apple | testrole_partitioning |
+ List of partitioned tables
+ Schema | Name | Owner | Parent name
+----------+----------------+---------------------------+-------------
+ testpart | testpart_apple | regress_partitioning_role |
(1 row)
\dPi test*apple*
- List of partitioned indexes
- Schema | Name | Owner | Parent name | Table
-----------+----------------------+-----------------------+-------------+----------------
- testpart | testpart_apple_index | testrole_partitioning | | testpart_apple
+ List of partitioned indexes
+ Schema | Name | Owner | Parent name | Table
+----------+----------------------+---------------------------+-------------+----------------
+ testpart | testpart_apple_index | regress_partitioning_role | | testpart_apple
(1 row)
drop table testtable_apple;
@@ -4657,75 +4657,75 @@ create table child_35_40 partition of child_30_40
for values from (35) to (40);
insert into parent_tab values (generate_series(30,39));
\dPt
- List of partitioned tables
- Schema | Name | Owner
-----------+------------+-----------------------
- testpart | parent_tab | testrole_partitioning
+ List of partitioned tables
+ Schema | Name | Owner
+----------+------------+---------------------------
+ testpart | parent_tab | regress_partitioning_role
(1 row)
\dPi
- List of partitioned indexes
- Schema | Name | Owner | Table
-----------+--------------+-----------------------+------------
- testpart | parent_index | testrole_partitioning | parent_tab
+ List of partitioned indexes
+ Schema | Name | Owner | Table
+----------+--------------+---------------------------+------------
+ testpart | parent_index | regress_partitioning_role | parent_tab
(1 row)
\dP testpart.*
- List of partitioned relations
- Schema | Name | Owner | Type | Parent name | Table
-----------+--------------------+-----------------------+-------------------+--------------+-------------
- testpart | parent_tab | testrole_partitioning | partitioned table | |
- testpart | child_30_40 | testrole_partitioning | partitioned table | parent_tab |
- testpart | parent_index | testrole_partitioning | partitioned index | | parent_tab
- testpart | child_30_40_id_idx | testrole_partitioning | partitioned index | parent_index | child_30_40
+ List of partitioned relations
+ Schema | Name | Owner | Type | Parent name | Table
+----------+--------------------+---------------------------+-------------------+--------------+-------------
+ testpart | parent_tab | regress_partitioning_role | partitioned table | |
+ testpart | child_30_40 | regress_partitioning_role | partitioned table | parent_tab |
+ testpart | parent_index | regress_partitioning_role | partitioned index | | parent_tab
+ testpart | child_30_40_id_idx | regress_partitioning_role | partitioned index | parent_index | child_30_40
(4 rows)
\dP
- List of partitioned relations
- Schema | Name | Owner | Type | Table
-----------+--------------+-----------------------+-------------------+------------
- testpart | parent_tab | testrole_partitioning | partitioned table |
- testpart | parent_index | testrole_partitioning | partitioned index | parent_tab
+ List of partitioned relations
+ Schema | Name | Owner | Type | Table
+----------+--------------+---------------------------+-------------------+------------
+ testpart | parent_tab | regress_partitioning_role | partitioned table |
+ testpart | parent_index | regress_partitioning_role | partitioned index | parent_tab
(2 rows)
\dPtn
- List of partitioned tables
- Schema | Name | Owner | Parent name
-----------+-------------+-----------------------+-------------
- testpart | parent_tab | testrole_partitioning |
- testpart | child_30_40 | testrole_partitioning | parent_tab
+ List of partitioned tables
+ Schema | Name | Owner | Parent name
+----------+-------------+---------------------------+-------------
+ testpart | parent_tab | regress_partitioning_role |
+ testpart | child_30_40 | regress_partitioning_role | parent_tab
(2 rows)
\dPin
- List of partitioned indexes
- Schema | Name | Owner | Parent name | Table
-----------+--------------------+-----------------------+--------------+-------------
- testpart | parent_index | testrole_partitioning | | parent_tab
- testpart | child_30_40_id_idx | testrole_partitioning | parent_index | child_30_40
+ List of partitioned indexes
+ Schema | Name | Owner | Parent name | Table
+----------+--------------------+---------------------------+--------------+-------------
+ testpart | parent_index | regress_partitioning_role | | parent_tab
+ testpart | child_30_40_id_idx | regress_partitioning_role | parent_index | child_30_40
(2 rows)
\dPn
- List of partitioned relations
- Schema | Name | Owner | Type | Parent name | Table
-----------+--------------------+-----------------------+-------------------+--------------+-------------
- testpart | parent_tab | testrole_partitioning | partitioned table | |
- testpart | child_30_40 | testrole_partitioning | partitioned table | parent_tab |
- testpart | parent_index | testrole_partitioning | partitioned index | | parent_tab
- testpart | child_30_40_id_idx | testrole_partitioning | partitioned index | parent_index | child_30_40
+ List of partitioned relations
+ Schema | Name | Owner | Type | Parent name | Table
+----------+--------------------+---------------------------+-------------------+--------------+-------------
+ testpart | parent_tab | regress_partitioning_role | partitioned table | |
+ testpart | child_30_40 | regress_partitioning_role | partitioned table | parent_tab |
+ testpart | parent_index | regress_partitioning_role | partitioned index | | parent_tab
+ testpart | child_30_40_id_idx | regress_partitioning_role | partitioned index | parent_index | child_30_40
(4 rows)
\dPn testpart.*
- List of partitioned relations
- Schema | Name | Owner | Type | Parent name | Table
-----------+--------------------+-----------------------+-------------------+--------------+-------------
- testpart | parent_tab | testrole_partitioning | partitioned table | |
- testpart | child_30_40 | testrole_partitioning | partitioned table | parent_tab |
- testpart | parent_index | testrole_partitioning | partitioned index | | parent_tab
- testpart | child_30_40_id_idx | testrole_partitioning | partitioned index | parent_index | child_30_40
+ List of partitioned relations
+ Schema | Name | Owner | Type | Parent name | Table
+----------+--------------------+---------------------------+-------------------+--------------+-------------
+ testpart | parent_tab | regress_partitioning_role | partitioned table | |
+ testpart | child_30_40 | regress_partitioning_role | partitioned table | parent_tab |
+ testpart | parent_index | regress_partitioning_role | partitioned index | | parent_tab
+ testpart | child_30_40_id_idx | regress_partitioning_role | partitioned index | parent_index | child_30_40
(4 rows)
drop table parent_tab cascade;
drop schema testpart;
set search_path to default;
set role to default;
-drop role testrole_partitioning;
+drop role regress_partitioning_role;
diff --git a/src/test/regress/sql/psql.sql b/src/test/regress/sql/psql.sql
index 78f4b5d7d50..26f436ae403 100644
--- a/src/test/regress/sql/psql.sql
+++ b/src/test/regress/sql/psql.sql
@@ -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;