File tree 8 files changed +21
-16
lines changed
8 files changed +21
-16
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,11 @@ DATA_built = $(RELEASE_SQL) \
32
32
pg_sphere--1.2.2--1.2.3.sql \
33
33
pg_sphere--1.2.3--1.3.0.sql \
34
34
pg_sphere--1.3.0--1.3.1.sql \
35
- pg_sphere--1.3.1--1.4.0.sql
35
+ pg_sphere--1.3.1--1.4.0.sql \
36
+ pg_sphere--1.4.0--1.4.1.sql \
36
37
37
38
DOCS = README.pg_sphere COPYRIGHT.pg_sphere
38
- TESTS = tables points euler circle line ellipse poly path box \
39
+ TESTS = version tables points euler circle line ellipse poly path box \
39
40
index contains_ops contains_ops_compat bounding_box_gist gnomo \
40
41
epochprop contains overlaps spoint_brin sbox_brin selectivity
41
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
205
206
cat upgrade_scripts/$@ .in $^ > $@
206
207
208
+ pg_sphere--1.4.0--1.4.1.sql :
209
+ cat upgrade_scripts/$@ .in $^ > $@
210
+
207
211
# end of local stuff
208
212
209
213
src/sscan.o : src/sparse.c
Original file line number Diff line number Diff line change 5
5
# ----------------------------------------------------------------------------
6
6
7
7
EXTENSION := pg_sphere
8
- PGSPHERE_VERSION := 1.4.0
8
+ PGSPHERE_VERSION := 1.4.1
Original file line number Diff line number Diff line change 1
1
--
2
- -- first, define the datatype. Turn off echoing so that expected file
3
- -- does not depend on contents of pg_sphere.sql.
2
+ -- Initialize the extension.
4
3
--
5
4
CREATE EXTENSION pg_sphere;
6
- select pg_sphere_version();
7
- pg_sphere_version
8
- -------------------
9
- 1.4.0
10
- (1 row)
11
-
Original file line number Diff line number Diff line change
1
+ -- Check current pgsphere version
2
+ SELECT pg_sphere_version();
3
+ pg_sphere_version
4
+ -------------------
5
+ 1.4.1
6
+ (1 row)
7
+
Original file line number Diff line number Diff line change 1
1
# pg_sphere extension
2
2
comment = 'spherical objects with useful functions, operators and index support'
3
- default_version = '1.4.0 '
3
+ default_version = '1.4.1 '
4
4
module_pathname = '$libdir/pg_sphere'
5
5
relocatable = true
Original file line number Diff line number Diff line change 1
1
--
2
- -- first, define the datatype. Turn off echoing so that expected file
3
- -- does not depend on contents of pg_sphere.sql.
2
+ -- Initialize the extension.
4
3
--
5
4
CREATE EXTENSION pg_sphere;
6
-
7
- select pg_sphere_version();
Original file line number Diff line number Diff line change
1
+ -- Check current pgsphere version
2
+ SELECT pg_sphere_version();
3
+
Original file line number Diff line number Diff line change
1
+ -- Nothing to upgrade in the schema
You can’t perform that action at this time.
0 commit comments