We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8394ae7 commit daa9478Copy full SHA for daa9478
Makefile
@@ -35,7 +35,8 @@ DATA_built = $(RELEASE_SQL) \
35
pg_sphere--1.3.1--1.4.0.sql \
36
pg_sphere--1.4.0--1.4.1.sql \
37
pg_sphere--1.4.1--1.4.2.sql \
38
- pg_sphere--1.4.2--1.5.0.sql
+ pg_sphere--1.4.2--1.5.0.sql \
39
+ pg_sphere--1.5.0--1.5.1.sql
40
41
DOCS = README.pg_sphere COPYRIGHT.pg_sphere
42
TESTS = version tables points euler circle line ellipse poly path box \
@@ -214,6 +215,9 @@ pg_sphere--1.4.0--1.4.1.sql pg_sphere--1.4.1--1.4.2.sql:
214
215
pg_sphere--1.4.2--1.5.0.sql:
216
cat upgrade_scripts/$@.in $^ > $@
217
218
+pg_sphere--1.5.0--1.5.1.sql:
219
+ cat upgrade_scripts/$@.in $^ > $@
220
+
221
# end of local stuff
222
223
src/sscan.o : src/sparse.c
Makefile.common.mk
@@ -5,4 +5,4 @@
5
#----------------------------------------------------------------------------
6
7
EXTENSION := pg_sphere
8
-PGSPHERE_VERSION := 1.5.0
+PGSPHERE_VERSION := 1.5.1
expected/version.out
@@ -2,6 +2,6 @@
2
SELECT pg_sphere_version();
3
pg_sphere_version
4
-------------------
- 1.5.0
+ 1.5.1
(1 row)
pg_sphere.control
@@ -1,5 +1,5 @@
1
# pg_sphere extension
comment = 'spherical objects with useful functions, operators and index support'
-default_version = '1.5.0'
+default_version = '1.5.1'
module_pathname = '$libdir/pg_sphere'
relocatable = true
upgrade_scripts/pg_sphere--1.5.0--1.5.1.sql.in
@@ -0,0 +1,11 @@
+-- Upgrade: 1.5.0 -> 1.5.1
+DO $$
+BEGIN
+ ALTER OPERATOR FAMILY spoint USING gist ADD
+ OPERATOR 17 <-> (spoint, spoint) FOR ORDER BY float_ops;
+EXCEPTION
+ WHEN duplicate_object THEN NULL;
9
+ WHEN OTHERS THEN RAISE;
10
+END;
11
+$$;
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments