Schema
Owner
postgres
Descriptions
args: g1 - Return the number of points (vertexes) in a geometry.
Options
Option | Value |
---|---|
Returns |
integer |
Language |
c |
Parameters |
public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_npoints (
public.geometry
)
RETURNS integer AS
'$libdir/postgis-2.3', 'LWGEOM_npoints'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 10;
COMMENT ON FUNCTION public.st_npoints(public.geometry)
IS 'args: g1 - Return the number of points (vertexes) in a geometry.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |