Schema
Owner
postgres
Descriptions
args: WKT - Makes a Geometry from WKT with the given SRID. If SRID is not give, it defaults to 0.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
sql |
Parameters |
text |
Definition
CREATE OR REPLACE FUNCTION public.st_polygonfromtext (
text
)
RETURNS public.geometry AS
$span$
SELECT public.ST_PolyFromText($1)
$span$
LANGUAGE 'sql'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_polygonfromtext(text)
IS 'args: WKT - Makes a Geometry from WKT with the given SRID. If SRID is not give, it defaults to 0.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |