File tree 3 files changed +17
-2
lines changed
3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ MODULE_big = seg
4
4
OBJS = seg.o segparse.o $(WIN32RES )
5
5
6
6
EXTENSION = seg
7
- DATA = seg--1.1.sql seg--1.0--1.1.sql seg--unpackaged--1.0.sql
7
+ DATA = seg--1.1.sql seg--1.1--1.2.sql \
8
+ seg--1.0--1.1.sql seg--unpackaged--1.0.sql
8
9
PGFILEDESC = "seg - line segment data type"
9
10
10
11
REGRESS = seg
Original file line number Diff line number Diff line change
1
+ /* contrib/seg/seg--1.1--1.2.sql */
2
+
3
+ -- complain if script is sourced in psql, rather than via ALTER EXTENSION
4
+ \echo Use " ALTER EXTENSION seg UPDATE TO '1.2'" to load this file. \quit
5
+
6
+ ALTER OPERATOR <= (seg, seg) SET (
7
+ RESTRICT = scalarlesel,
8
+ JOIN = scalarlejoinsel
9
+ );
10
+
11
+ ALTER OPERATOR >= (seg, seg) SET (
12
+ RESTRICT = scalargesel,
13
+ JOIN = scalargejoinsel
14
+ );
Original file line number Diff line number Diff line change 1
1
# seg extension
2
2
comment = 'data type for representing line segments or floating-point intervals'
3
- default_version = '1.1 '
3
+ default_version = '1.2 '
4
4
module_pathname = '$libdir/seg'
5
5
relocatable = true
You can’t perform that action at this time.
0 commit comments