Schema
public
Owner
albenard
Descriptions
args: g1 - Return the Well-Known Text (WKT) representation of the geometry/geography without SRID metadata.
Options
Option | Value |
---|---|
Returns |
text |
Language |
c |
Parameters |
public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_astext (
public.geometry
)
RETURNS text AS
'$libdir/postgis-2.3', 'LWGEOM_asText'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 750;
COMMENT ON FUNCTION public.st_astext(public.geometry)
IS 'args: g1 - Return the Well-Known Text (WKT) representation of the geometry/geography without SRID metadata.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51 |