From 820d2c194e5fa5c20209d2ead47a4a9a0e3f4681 Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Mon, 26 Sep 2005 12:07:48 +0000 Subject: [PATCH] Added stub for linemerge() git-svn-id: http://svn.osgeo.org/postgis/trunk@1933 b70326c6-7e19-0410-871a-916f4a2858ee --- lwgeom/lwgeom_nojts.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lwgeom/lwgeom_nojts.c b/lwgeom/lwgeom_nojts.c index 8a6aa7101..9111687e0 100644 --- a/lwgeom/lwgeom_nojts.c +++ b/lwgeom/lwgeom_nojts.c @@ -205,6 +205,14 @@ Datum polygonize_garray(PG_FUNCTION_ARGS) PG_RETURN_NULL(); // never get here } +Datum linemerge(PG_FUNCTION_ARGS); +PG_FUNCTION_INFO_V1(linemerge); +Datum linemerge(PG_FUNCTION_ARGS) +{ + elog(ERROR,"linemerge:: operation not implemented - compile PostGIS with JTS or GEOS support"); + PG_RETURN_NULL(); // never get here +} + Datum JTSnoop(PG_FUNCTION_ARGS); PG_FUNCTION_INFO_V1(JTSnoop); Datum JTSnoop(PG_FUNCTION_ARGS) -- 2.49.0