Schema
Owner
postgres
Descriptions
args: geomA, geomB - (T)Returns a geometry that represents the shared portion of geomA and geomB.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
geom1 public.geometry geom2 public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_intersection (
geom1 public.geometry,
geom2 public.geometry
)
RETURNS public.geometry AS
'$libdir/postgis-2.3', 'intersection'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_intersection(geom1 public.geometry, geom2 public.geometry)
IS 'args: geomA, geomB - (T)Returns a geometry that represents the shared portion of geomA and geomB.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |