Schema
public
Owner
albenard
Descriptions
args: A, B - Returns true if the given geometries represent the same geometry and points are in the same directional order.
Options
Option | Value |
---|---|
Returns |
boolean |
Language |
sql |
Parameters |
geometrya public.geometry geometryb public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_orderingequals (
geometrya public.geometry,
geometryb public.geometry
)
RETURNS boolean AS
$span$
SELECT $1 OPERATOR(public.~=) $2 AND public._ST_OrderingEquals($1, $2)
$span$
LANGUAGE 'sql'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION public.st_orderingequals(geometrya public.geometry, geometryb public.geometry)
IS 'args: A, B - Returns true if the given geometries represent the same geometry and points are in the same directional order.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51 |