mirror of https://github.com/postgres/postgres
I somehow missed this module in commit 7d08ce286
.
pull/31/head^2
parent
7d08ce286c
commit
44ba292064
@ -0,0 +1,14 @@ |
|||||||
|
/* contrib/seg/seg--1.1--1.2.sql */ |
||||||
|
|
||||||
|
-- complain if script is sourced in psql, rather than via ALTER EXTENSION |
||||||
|
\echo Use "ALTER EXTENSION seg UPDATE TO '1.2'" to load this file. \quit |
||||||
|
|
||||||
|
ALTER OPERATOR <= (seg, seg) SET ( |
||||||
|
RESTRICT = scalarlesel, |
||||||
|
JOIN = scalarlejoinsel |
||||||
|
); |
||||||
|
|
||||||
|
ALTER OPERATOR >= (seg, seg) SET ( |
||||||
|
RESTRICT = scalargesel, |
||||||
|
JOIN = scalargejoinsel |
||||||
|
); |
@ -1,5 +1,5 @@ |
|||||||
# seg extension |
# seg extension |
||||||
comment = 'data type for representing line segments or floating-point intervals' |
comment = 'data type for representing line segments or floating-point intervals' |
||||||
default_version = '1.1' |
default_version = '1.2' |
||||||
module_pathname = '$libdir/seg' |
module_pathname = '$libdir/seg' |
||||||
relocatable = true |
relocatable = true |
||||||
|
Loading…
Reference in new issue