From f7c53bb9e309cfea3206f4ed44b38eb2bd1cf726 Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Wed, 8 Sep 2021 17:02:18 +0200 Subject: 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 Discussion: https://postgr.es/m/CALj2ACW3snGBD8BAQiArMDS1Y43LuX3ymwO+N8aUg1Hrv6hYNw@mail.gmail.com --- src/backend/commands/amcmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/backend/commands/amcmds.c') diff --git a/src/backend/commands/amcmds.c b/src/backend/commands/amcmds.c index 188109e474c..72e209a8b01 100644 --- a/src/backend/commands/amcmds.c +++ b/src/backend/commands/amcmds.c @@ -53,7 +53,7 @@ CreateAccessMethod(CreateAmStmt *stmt) rel = table_open(AccessMethodRelationId, RowExclusiveLock); - /* Must be super user */ + /* Must be superuser */ if (!superuser()) ereport(ERROR, (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), -- cgit v1.2.3