From f09e82270e3258508c6d6cc191486c56ee926216 Mon Sep 17 00:00:00 2001 From: Daniel <10074684+danieltprice@users.noreply.github.com> Date: Wed, 19 Jul 2023 15:08:25 -0300 Subject: [PATCH] Update comment for hnsw extension (#4755) Updated the description that appears for hnsw when you query extensions: ``` neondb=> SELECT * FROM pg_available_extensions WHERE name = 'hnsw'; name | default_version | installed_version | comment ----------------------+-----------------+-------------------+-------------------------------------------------- hnsw | 0.1.0 | | ** Deprecated ** Please use pg_embedding instead (1 row) ``` --------- Co-authored-by: Alexander Bayandin --- pgxn/hnsw/hnsw.control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgxn/hnsw/hnsw.control b/pgxn/hnsw/hnsw.control index 8b75c350a8..24510f6766 100644 --- a/pgxn/hnsw/hnsw.control +++ b/pgxn/hnsw/hnsw.control @@ -1,4 +1,4 @@ -comment = 'hnsw index' +comment = '** Deprecated ** Please use pg_embedding instead' default_version = '0.1.0' module_pathname = '$libdir/hnsw' relocatable = true