We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
2 parentsf229b2e +2cb0c28 commit65268edCopy full SHA for 65268ed
Makefile
@@ -32,10 +32,11 @@ DATA_built = $(RELEASE_SQL) \
32
pg_sphere--1.2.2--1.2.3.sql\
33
pg_sphere--1.2.3--1.3.0.sql\
34
pg_sphere--1.3.0--1.3.1.sql\
35
- pg_sphere--1.3.1--1.4.0.sql
+ pg_sphere--1.3.1--1.4.0.sql\
36
+ pg_sphere--1.4.0--1.4.1.sql\
37
38
DOCS = README.pg_sphere COPYRIGHT.pg_sphere
-TESTS = tables points euler circle line ellipse poly path box\
39
+TESTS =versiontables points euler circle line ellipse poly path box\
40
index contains_ops contains_ops_compat bounding_box_gist gnomo\
41
epochprop contains overlaps spoint_brin sbox_brin selectivity
42
REGRESS = init$(TESTS)
@@ -204,6 +205,9 @@ endif
204
205
pg_sphere--1.3.1--1.4.0.sql: pgs_circle_sel.sql.in pgs_hash.sql.in
206
cat upgrade_scripts/$@.in$^>$@
207
208
+pg_sphere--1.4.0--1.4.1.sql:
209
+cat upgrade_scripts/$@.in$^>$@
210
+
211
# end of local stuff
212
213
src/sscan.o : src/sparse.c
Makefile.common.mk
@@ -5,4 +5,4 @@
5
#----------------------------------------------------------------------------
6
7
EXTENSION := pg_sphere
8
-PGSPHERE_VERSION := 1.4.0
+PGSPHERE_VERSION := 1.4.1
expected/init.out
@@ -1,11 +1,4 @@
1
--
2
--- first, define the datatype. Turn off echoing so that expected file
3
--- does not depend on contents of pg_sphere.sql.
+-- Initialize the extension.
4
CREATE EXTENSION pg_sphere;
-select pg_sphere_version();
- pg_sphere_version
--------------------
9
- 1.4.0
10
-(1 row)
11
-
expected/version.out
@@ -0,0 +1,7 @@
+-- Check current pgsphere version
+SELECT pg_sphere_version();
+ pg_sphere_version
+-------------------
+ 1.4.1
+(1 row)
pg_sphere.control
@@ -1,5 +1,5 @@
# pg_sphere extension
comment = 'spherical objects with useful functions, operators and index support'
-default_version = '1.4.0'
+default_version = '1.4.1'
module_pathname = '$libdir/pg_sphere'
relocatable = true
sql/init.sql
@@ -1,7 +1,4 @@
sql/version.sql
@@ -0,0 +1,3 @@
upgrade_scripts/pg_sphere--1.4.0--1.4.1.sql.in
@@ -0,0 +1 @@
+-- Nothing to upgrade in the schema