Skip to content

Commit

Permalink
Fix invalid DROP statement
Browse files Browse the repository at this point in the history
  • Loading branch information
rdunklau committed May 24, 2024
1 parent a2bb2f3 commit 01e145b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sql/aiven_extras--1.1.11--1.1.12.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion sql/aiven_extras.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 01e145b

Please sign in to comment.