From: Fujii Masao Date: Fri, 3 Jul 2026 04:46:35 +0000 (+0900) Subject: psql: Fix \df tab completion for procedures X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f9afdb6d1a2851c5301a9ae962d1d1b3e8bd5a29;p=thirdparty%2Fpostgresql.git psql: Fix \df tab completion for procedures Commit fb421231daa extended \df to include procedures, but its tab completion continued not to show procedures. Update \df tab completion to include procedures as well. Backpatch to all supported versions. Author: Erik Wienhold Reviewed-by: Surya Poondla Reviewed-by: Fujii Masao Discussion: https://postgr.es/m/10fbfdfe-80f6-4ef9-b8b3-f7be0eb53a50@ewie.name Backpatch-through: 14 --- diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 585a79293d9..5846b2aac15 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -4704,7 +4704,7 @@ psql_completion(const char *text, int start, int end) else if (TailMatchesCS("\\dew*")) COMPLETE_WITH_QUERY(Query_for_list_of_fdws); else if (TailMatchesCS("\\df*")) - COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions); + COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines); else if (HeadMatchesCS("\\df*")) COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_datatypes);