Schema
Owner
postgres
Descriptions
There is no description for function _st_within
Options
Option | Value |
---|---|
Returns |
boolean |
Language |
sql |
Parameters |
geom1 public.geometry geom2 public.geometry |
Definition
CREATE OR REPLACE FUNCTION public._st_within (
geom1 public.geometry,
geom2 public.geometry
)
RETURNS boolean AS
$span$
SELECT public._ST_Contains($2,$1)
$span$
LANGUAGE 'sql'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 100;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |