From 352dc9baec5155a410a8f8b73ec4e75666620110 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Nordstr=C3=B6m?= Date: Tue, 6 Jul 2021 10:30:40 +0200 Subject: [PATCH] Remove copy_chunk_data from downgrade script The internal function `copy_chunk_data` was removed as part of refactoring and is no longer necessary to remove in the downgrade script since the function was never part of a release. --- sql/updates/reverse-dev.sql | 1 - 1 file changed, 1 deletion(-) diff --git a/sql/updates/reverse-dev.sql b/sql/updates/reverse-dev.sql index e07e6726f..adfc363e3 100644 --- a/sql/updates/reverse-dev.sql +++ b/sql/updates/reverse-dev.sql @@ -5,7 +5,6 @@ DROP FUNCTION IF EXISTS _timescaledb_internal.create_chunk_table; DROP FUNCTION IF EXISTS _timescaledb_internal.create_chunk_replica_table; DROP FUNCTION IF EXISTS _timescaledb_internal.chunk_drop_replica; DROP FUNCTION IF EXISTS _timescaledb_internal.create_chunk; -DROP FUNCTION IF EXISTS _timescaledb_internal.copy_chunk_data; DROP PROCEDURE IF EXISTS _timescaledb_internal.wait_subscription_sync; DROP PROCEDURE IF EXISTS timescaledb_experimental.move_chunk; DROP PROCEDURE IF EXISTS timescaledb_experimental.copy_chunk;