From 7f5392cf188809154617bda20fde5e07fa6c0475 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Helleboid?= Date: Thu, 16 Nov 2023 11:47:37 +0400 Subject: [PATCH] fix(doc): add slot_type to list-replication-slots query The query is used for both logical and physical replication Having the type will help debugging the actual slot having an issue --- content/runbooks/postgresql/sql/list-replication-slots.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/content/runbooks/postgresql/sql/list-replication-slots.sql b/content/runbooks/postgresql/sql/list-replication-slots.sql index f9b6a8e..c3f2401 100644 --- a/content/runbooks/postgresql/sql/list-replication-slots.sql +++ b/content/runbooks/postgresql/sql/list-replication-slots.sql @@ -1,4 +1,5 @@ SELECT + slot_type, database, slot_name, active::TEXT,