*
**********************************************************************
* $Log$
+ * Revision 1.12 2003/10/16 20:16:18 dblasby
+ * Added NOTICE_HANDLER function. For some reason this didnt get properly
+ * committed last time.
+ *
* Revision 1.11 2003/10/14 23:19:19 dblasby
* GEOS2POSTGIS - added protection to pfree(NULL) for multi* geoms
*
POLYGON3D *PolyFromGeometry(Geometry *g, int *size);
LINE3D *LineFromGeometry(Geometry *g, int *size);
-
+void NOTICE_MESSAGE(char *msg);
//-----------------------------------------------
// return a GEOS Geometry from a POSTGIS GEOMETRY
//----------------------------------------------
+
+
+void NOTICE_MESSAGE(char *msg)
+{
+ elog(NOTICE,msg);
+}
+
+
+
//select geomunion('POLYGON((0 0, 10 0, 10 10, 0 10, 0 0))','POLYGON((5 5, 15 5, 15 7, 5 7, 5 5))');
PG_FUNCTION_INFO_V1(geomunion);
Datum geomunion(PG_FUNCTION_ARGS)