From 2ba77cbd0616e2e428873bdc931f148c40e7cf88 Mon Sep 17 00:00:00 2001 From: Regina Obe Date: Tue, 26 May 2009 16:26:26 +0000 Subject: [PATCH] for consistency make example be same as what is used to generate the image. git-svn-id: http://svn.osgeo.org/postgis/trunk@4102 b70326c6-7e19-0410-871a-916f4a2858ee --- doc/reference.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/reference.xml b/doc/reference.xml index 976ac608c..4c858d612 100644 --- a/doc/reference.xml +++ b/doc/reference.xml @@ -11425,8 +11425,10 @@ SELECT ST_Within(smallc,smallc) As smallinsmall, ST_Within(ST_Union(smallc, bigc), bigc) as unioninbig, ST_Within(bigc, ST_Union(smallc, bigc)) as biginunion, ST_Equals(bigc, ST_Union(smallc, bigc)) as bigisunion -FROM (SELECT ST_Buffer(ST_GeomFromText('POINT(1 2)'), 10) As smallc, - ST_Buffer(ST_GeomFromText('POINT(1 2)'), 20) As bigc) As foo; +FROM +( +SELECT ST_Buffer(ST_GeomFromText('POINT(50 50)'), 50) As smallc, + ST_Buffer(ST_GeomFromText('POINT(50 50)'), 100) As bigc) As foo; --Result smallinsmall | smallinbig | biginsmall | unioninbig | biginunion | bigisunion --------------+------------+------------+------------+------------+------------ -- 2.50.0