]> pd.if.org Git - dumppoints/blob - dumppoints--1.0.sql
added email address to README
[dumppoints] / dumppoints--1.0.sql
1 -- written by nathan wagner and placed in the public domain
2
3 -- we have to call a postgis function to force the
4 -- backend to load the postgis shared object file,
5 -- otherwise we will get unresolved symbols as this
6 -- extension calls postgis functions
7 select postgis_version();
8
9 CREATE OR REPLACE FUNCTION ST_DumpPoints(geometry)
10         RETURNS SETOF geometry_dump
11         AS '$libdir/dumppoints', 'LWGEOM_dumppoints'
12         LANGUAGE C IMMUTABLE STRICT;