From 0436f34d406a782451b1087a117f66eb72ea8ef8 Mon Sep 17 00:00:00 2001 From: John Naylor Date: Thu, 4 Aug 2022 15:29:25 +0700 Subject: [PATCH] Clarify DROP EXTENSION docs regarding explicitly dependent routines Per suggestion from Robert Haas Backpatch to v14 Discussion: https://www.postgresql.org/message-id/CA%2BTgmoZ1QvHquYHLkMy1oHKqz4-E7QQctj6e0ocq_GP1B5%2B9bA%40mail.gmail.com --- doc/src/sgml/ref/drop_extension.sgml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/ref/drop_extension.sgml b/doc/src/sgml/ref/drop_extension.sgml index c01ddace84..4ea20131c7 100644 --- a/doc/src/sgml/ref/drop_extension.sgml +++ b/doc/src/sgml/ref/drop_extension.sgml @@ -32,7 +32,8 @@ DROP EXTENSION [ IF EXISTS ] name [ DROP EXTENSION removes extensions from the database. Dropping an extension causes its component objects, and other explicitly dependent routines (see , - the depends on extension action), to be dropped as well. + the DEPENDS ON EXTENSION extension_name + action), to be dropped as well.