From 383fa1d5dcfc20b1221e6726eb71a97fb26832be Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Mon, 17 Jan 2005 12:15:39 +0000 Subject: [PATCH] Added GEOMETRYCOLLECTION(EMPTY) support git-svn-id: http://svn.osgeo.org/postgis/trunk@1309 b70326c6-7e19-0410-871a-916f4a2858ee --- lwgeom/wktparse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lwgeom/wktparse.y b/lwgeom/wktparse.y index e39ecc548..2b493788f 100644 --- a/lwgeom/wktparse.y +++ b/lwgeom/wktparse.y @@ -118,7 +118,7 @@ point_3d : VALUE VALUE VALUE {alloc_point_3d($1,$2,$3); }; point_4d : VALUE VALUE VALUE VALUE {alloc_point_4d($1,$2,$3,$4); }; -empty : EMPTY {alloc_empty(); } ; +empty : EMPTY {alloc_empty(); } | LPAREN EMPTY RPAREN {alloc_empty(); } ; %% -- 2.50.0