Schema
Owner
postgres
Descriptions
args: lineal1, lineal2 - Returns a collection containing paths shared by the two input linestrings/multilinestrings.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
geom1 public.geometry geom2 public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_sharedpaths (
geom1 public.geometry,
geom2 public.geometry
)
RETURNS public.geometry AS
'$libdir/postgis-2.3', 'ST_SharedPaths'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_sharedpaths(geom1 public.geometry, geom2 public.geometry)
IS 'args: lineal1, lineal2 - Returns a collection containing paths shared by the two input linestrings/multilinestrings.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |