diff options
Diffstat (limited to 'contrib/seg/seg.sql.in')
-rw-r--r-- | contrib/seg/seg.sql.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/contrib/seg/seg.sql.in b/contrib/seg/seg.sql.in index 6f7d1a6438a..ae71929a73e 100644 --- a/contrib/seg/seg.sql.in +++ b/contrib/seg/seg.sql.in @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/contrib/seg/seg.sql.in,v 1.17 2008/04/14 17:05:32 tgl Exp $ */ +/* $PostgreSQL: pgsql/contrib/seg/seg.sql.in,v 1.18 2008/04/18 18:43:08 alvherre Exp $ */ -- Adjust this setting to control where the objects get created. SET search_path = public; @@ -164,6 +164,11 @@ LANGUAGE C STRICT IMMUTABLE; -- miscellaneous +CREATE OR REPLACE FUNCTION seg_center(seg) +RETURNS float4 +AS 'MODULE_PATHNAME' +LANGUAGE C STRICT IMMUTABLE; + CREATE OR REPLACE FUNCTION seg_upper(seg) RETURNS float4 AS 'MODULE_PATHNAME' |