From: Regina Obe Date: Wed, 10 Sep 2008 11:57:59 +0000 (+0000) Subject: example and result misaligned X-Git-Tag: 1.4.0b1~750 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=90713c2f23a0e2d8f2a39a9028fa75edbfdec8af;p=postgis example and result misaligned git-svn-id: http://svn.osgeo.org/postgis/trunk@2954 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/reference_new.xml b/doc/reference_new.xml index 73734b127..b5f217870 100644 --- a/doc/reference_new.xml +++ b/doc/reference_new.xml @@ -2376,8 +2376,8 @@ postgis=# SELECT ST_StartPoint('POINT(0 1)'::geometry) IS NULL AS is_null; Examples - SELECT ST_IsValid(ST_GeomFromText('LINESTRING(0 0, 1 1)')) As good_line, - ST_IsValid(ST_GeomFromText('POLYGON((0 0, 1 1, 1 2, 1 1, 0 0))')) As bad_poly + SELECT ST_Summary(ST_GeomFromText('LINESTRING(0 0, 1 1)')) As good_line, + ST_Summary(ST_GeomFromText('POLYGON((0 0, 1 1, 1 2, 1 1, 0 0))')) As bad_poly --results good_line | bad_poly ----------------------+-------------------------