From 0510b5d7531309102102c6435585d0d1bf310916 Mon Sep 17 00:00:00 2001 From: Sven Klemm Date: Mon, 3 Feb 2025 16:05:17 +0100 Subject: [PATCH] Sync sql/updates/2.18.0--2.17.2.sql with release branch The downgrade script for 2.17.2 that was merged into main branch was different from the one in 2.18.0 due to merge error. This patch syncs the downgrade script with the version used in 2.18.0 release. --- sql/updates/2.18.0--2.17.2.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/updates/2.18.0--2.17.2.sql b/sql/updates/2.18.0--2.17.2.sql index bc918202f24..89c7935ebbf 100644 --- a/sql/updates/2.18.0--2.17.2.sql +++ b/sql/updates/2.18.0--2.17.2.sql @@ -1,8 +1,8 @@ -- Hypercore AM DROP ACCESS METHOD IF EXISTS hypercore_proxy; -DROP FUNCTION IF EXISTS @extschema@.ts_hypercore_proxy_handler; +DROP FUNCTION IF EXISTS ts_hypercore_proxy_handler; DROP ACCESS METHOD IF EXISTS hypercore; -DROP FUNCTION IF EXISTS @extschema@.ts_hypercore_handler; +DROP FUNCTION IF EXISTS ts_hypercore_handler; DROP FUNCTION IF EXISTS _timescaledb_debug.is_compressed_tid; DROP FUNCTION IF EXISTS @extschema@.compress_chunk(uncompressed_chunk REGCLASS, if_not_compressed BOOLEAN, recompress BOOLEAN, hypercore_use_access_method BOOL);