diff options
| author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2021-09-08 17:02:18 +0200 |
|---|---|---|
| committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2021-09-08 17:02:18 +0200 |
| commit | f7c53bb9e309cfea3206f4ed44b38eb2bd1cf726 (patch) | |
| tree | 4b2f872e7bac041f382045cf540efa335856d6b8 /src/test | |
| parent | 7390b6421a98b70554b6b5edea5d6e012dfdbbba (diff) | |
Consistently use "superuser" instead of "super user"
The correct nomenclature for the highest privileged user is superuser
and not "super user", this replaces the few instances where that was
used erroneously. No user-visible changes are done as all changes are
in comments, so no back-patching.
Author: Bharath Rupireddy <bharath.rupireddyforpostgres@gmail.com>
Discussion: https://postgr.es/m/CALj2ACW3snGBD8BAQiArMDS1Y43LuX3ymwO+N8aUg1Hrv6hYNw@mail.gmail.com
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/regress/expected/conversion.out | 2 | ||||
| -rw-r--r-- | src/test/regress/sql/conversion.sql | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/conversion.out b/src/test/regress/expected/conversion.out index 04fdcba4964..5c9d6317556 100644 --- a/src/test/regress/expected/conversion.out +++ b/src/test/regress/expected/conversion.out @@ -33,7 +33,7 @@ DROP CONVERSION mydef; -- so there's no need to do that here. -- -- --- return to the super user +-- return to the superuser -- RESET SESSION AUTHORIZATION; DROP USER regress_conversion_user; diff --git a/src/test/regress/sql/conversion.sql b/src/test/regress/sql/conversion.sql index 83586824321..5576999e42e 100644 --- a/src/test/regress/sql/conversion.sql +++ b/src/test/regress/sql/conversion.sql @@ -30,7 +30,7 @@ DROP CONVERSION mydef; -- so there's no need to do that here. -- -- --- return to the super user +-- return to the superuser -- RESET SESSION AUTHORIZATION; DROP USER regress_conversion_user; |
