]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix tab completion of ALTER FUNCTION/PROCEDURE/ROUTINE ... SET SCHEMA.
authorDean Rasheed <dean.a.rasheed@gmail.com>
Fri, 6 Jan 2023 11:16:53 +0000 (11:16 +0000)
committerDean Rasheed <dean.a.rasheed@gmail.com>
Fri, 6 Jan 2023 11:16:53 +0000 (11:16 +0000)
The ALTER DATABASE|FUNCTION|PROCEDURE|ROLE|ROUTINE|USER ... SET <name>
case in psql tab completion failed to exclude <name> = "SCHEMA", which
caused ALTER FUNCTION|PROCEDURE|ROUTINE ... SET SCHEMA to complete
with "FROM CURRENT" and "TO", which won't work.

Fix that, so that those cases now complete with the list of schemas,
like other ALTER ... SET SCHEMA commands.

Noticed while testing the recent patch to improve tab completion for
ALTER FUNCTION/PROCEDURE/ROUTINE, but this is not directly related to
that patch. Rather, this is a long-standing bug, so back-patch to all
supported branches.

Discussion: https://postgr.es/m/CALDaNm0s7GQmkLP_mx5Cvk=UzYMnjhPmXBxU8DsHEunFbC5sTg@mail.gmail.com

src/bin/psql/tab-complete.c

index f84906b53112e27163054f43eb83b15718095312..f6e7011c21df78c614689dd443d069a9f0fbef68 100644 (file)
@@ -4336,11 +4336,12 @@ psql_completion(const char *text, int start, int end)
                COMPLETE_WITH("TO");
 
        /*
-        * Complete ALTER DATABASE|FUNCTION||PROCEDURE|ROLE|ROUTINE|USER ... SET
+        * Complete ALTER DATABASE|FUNCTION|PROCEDURE|ROLE|ROUTINE|USER ... SET
         * <name>
         */
        else if (HeadMatches("ALTER", "DATABASE|FUNCTION|PROCEDURE|ROLE|ROUTINE|USER") &&
-                        TailMatches("SET", MatchAny))
+                        TailMatches("SET", MatchAny) &&
+                        !TailMatches("SCHEMA"))
                COMPLETE_WITH("FROM CURRENT", "TO");
 
        /*