mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
15 lines
360 B
MySQL
15 lines
360 B
MySQL
|
/* 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
|
||
|
);
|