Hello Hackers,
I noticed that the comment at the top of btree_gist--1.8--1.9.sql says it is the 1.7--1.8 file. Here
is a one-line patch to fix that.
A related question: In the v18 release we are adding two upgrade files: btree_gist--1.7--1.8.sql and
btree_gist--1.8-1.9.sql. Why not collapse them into one? Technically we briefly had
btree_gist--1.7--1.8.sql in 17devel, but it was reverted before release. Would you like a patch
combining these files? Is it too late for that?
Yours,
--
Paul ~{:-)
p...@illuminatedcomputing.com
From 518a70382e4628facb86b8f4f09fb73d38881931 Mon Sep 17 00:00:00 2001
From: "Paul A. Jungwirth" <p...@illuminatedcomputing.com>
Date: Tue, 8 Jul 2025 16:42:54 -0700
Subject: [PATCH v1] Fix comment in btree_gist--1.8--1.9.sql
The comment said this was the 1.7--1.8 file, but actually it's the file
for 1.8--1.9.
---
contrib/btree_gist/btree_gist--1.8--1.9.sql | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/btree_gist/btree_gist--1.8--1.9.sql b/contrib/btree_gist/btree_gist--1.8--1.9.sql
index 4b38749bf5f..cc1207ed022 100644
--- a/contrib/btree_gist/btree_gist--1.8--1.9.sql
+++ b/contrib/btree_gist/btree_gist--1.8--1.9.sql
@@ -1,4 +1,4 @@
-/* contrib/btree_gist/btree_gist--1.7--1.8.sql */
+/* contrib/btree_gist/btree_gist--1.8--1.9.sql */
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
\echo Use "ALTER EXTENSION btree_gist UPDATE TO '1.9'" to load this file. \quit
--
2.39.5