From 1f675a513db81c76c45687a31600fbc0537d93e4 Mon Sep 17 00:00:00 2001 From: Ronan Dunklau Date: Thu, 16 May 2024 09:44:52 +0200 Subject: [PATCH] Fix invalid DROP statement --- sql/aiven_extras.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/aiven_extras.sql b/sql/aiven_extras.sql index f6a5eb1..fe73859 100644 --- a/sql/aiven_extras.sql +++ b/sql/aiven_extras.sql @@ -598,7 +598,7 @@ CREATE FUNCTION aiven_extras.pg_create_logical_replication_slot_on_standby( AS 'MODULE_PATHNAME', 'standby_slot_create' LANGUAGE C; -DROP FUNCTION IF EXISTS aiven_extras.aiven_truncate_freespace_map(regclass); +DROP FUNCTION IF EXISTS aiven_extras.truncate_freespace_map(regclass); CREATE FUNCTION aiven_extras.truncate_freespace_map(regclass) RETURNS void AS 'MODULE_PATHNAME', 'aiven_truncate_freespace_map'