Add shape points as PostGIS geometery
Add shape points as PostGIS geometery

-- --
-- PostgreSQL database dump -- PostgreSQL database dump
-- --
   
-- Dumped from database version 9.0.4 -- Dumped from database version 9.0.4
-- Dumped by pg_dump version 9.0.4 -- Dumped by pg_dump version 9.0.4
-- Started on 2011-10-11 23:16:11 -- Started on 2011-10-11 23:16:11
   
SET statement_timeout = 0; SET statement_timeout = 0;
SET client_encoding = 'UTF8'; SET client_encoding = 'UTF8';
SET standard_conforming_strings = off; SET standard_conforming_strings = off;
SET check_function_bodies = false; SET check_function_bodies = false;
SET client_min_messages = warning; SET client_min_messages = warning;
SET escape_string_warning = off; SET escape_string_warning = off;
   
-- --
-- TOC entry 1168 (class 2612 OID 11574) -- TOC entry 1168 (class 2612 OID 11574)
-- Name: plpgsql; Type: PROCEDURAL LANGUAGE; Schema: -; Owner: postgres -- Name: plpgsql; Type: PROCEDURAL LANGUAGE; Schema: -; Owner: postgres
-- --
   
CREATE OR REPLACE PROCEDURAL LANGUAGE plpgsql; CREATE OR REPLACE PROCEDURAL LANGUAGE plpgsql;
   
   
ALTER PROCEDURAL LANGUAGE plpgsql OWNER TO postgres; ALTER PROCEDURAL LANGUAGE plpgsql OWNER TO postgres;
   
SET search_path = public, pg_catalog; SET search_path = public, pg_catalog;
   
-- --
-- TOC entry 1088 (class 0 OID 0) -- TOC entry 1088 (class 0 OID 0)
-- Name: box2d; Type: SHELL TYPE; Schema: public; Owner: postgres -- Name: box2d; Type: SHELL TYPE; Schema: public; Owner: postgres
-- --
   
CREATE TYPE box2d; CREATE TYPE box2d;
   
   
-- --
-- TOC entry 15 (class 1255 OID 18351) -- TOC entry 15 (class 1255 OID 18351)
-- Dependencies: 6 1088 -- Dependencies: 6 1088
-- Name: box2d_in(cstring); Type: FUNCTION; Schema: public; Owner: postgres -- Name: box2d_in(cstring); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION box2d_in(cstring) RETURNS box2d CREATE FUNCTION box2d_in(cstring) RETURNS box2d
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'BOX2DFLOAT4_in'; AS '$libdir/postgis-1.5', 'BOX2DFLOAT4_in';
   
   
ALTER FUNCTION public.box2d_in(cstring) OWNER TO postgres; ALTER FUNCTION public.box2d_in(cstring) OWNER TO postgres;
   
-- --
-- TOC entry 19 (class 1255 OID 18352) -- TOC entry 19 (class 1255 OID 18352)
-- Dependencies: 6 1088 -- Dependencies: 6 1088
-- Name: box2d_out(box2d); Type: FUNCTION; Schema: public; Owner: postgres -- Name: box2d_out(box2d); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION box2d_out(box2d) RETURNS cstring CREATE FUNCTION box2d_out(box2d) RETURNS cstring
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'BOX2DFLOAT4_out'; AS '$libdir/postgis-1.5', 'BOX2DFLOAT4_out';
   
   
ALTER FUNCTION public.box2d_out(box2d) OWNER TO postgres; ALTER FUNCTION public.box2d_out(box2d) OWNER TO postgres;
   
-- --
-- TOC entry 1087 (class 1247 OID 18350) -- TOC entry 1087 (class 1247 OID 18350)
-- Dependencies: 6 15 19 -- Dependencies: 6 15 19
-- Name: box2d; Type: TYPE; Schema: public; Owner: postgres -- Name: box2d; Type: TYPE; Schema: public; Owner: postgres
-- --
   
CREATE TYPE box2d ( CREATE TYPE box2d (
INTERNALLENGTH = 16, INTERNALLENGTH = 16,
INPUT = box2d_in, INPUT = box2d_in,
OUTPUT = box2d_out, OUTPUT = box2d_out,
ALIGNMENT = int4, ALIGNMENT = int4,
STORAGE = plain STORAGE = plain
); );
   
   
ALTER TYPE public.box2d OWNER TO postgres; ALTER TYPE public.box2d OWNER TO postgres;
   
-- --
-- TOC entry 1091 (class 0 OID 0) -- TOC entry 1091 (class 0 OID 0)
-- Name: box3d; Type: SHELL TYPE; Schema: public; Owner: postgres -- Name: box3d; Type: SHELL TYPE; Schema: public; Owner: postgres
-- --
   
CREATE TYPE box3d; CREATE TYPE box3d;
   
   
-- --
-- TOC entry 20 (class 1255 OID 18355) -- TOC entry 20 (class 1255 OID 18355)
-- Dependencies: 6 1091 -- Dependencies: 6 1091
-- Name: box3d_in(cstring); Type: FUNCTION; Schema: public; Owner: postgres -- Name: box3d_in(cstring); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION box3d_in(cstring) RETURNS box3d CREATE FUNCTION box3d_in(cstring) RETURNS box3d
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'BOX3D_in'; AS '$libdir/postgis-1.5', 'BOX3D_in';
   
   
ALTER FUNCTION public.box3d_in(cstring) OWNER TO postgres; ALTER FUNCTION public.box3d_in(cstring) OWNER TO postgres;
   
-- --
-- TOC entry 21 (class 1255 OID 18356) -- TOC entry 21 (class 1255 OID 18356)
-- Dependencies: 6 1091 -- Dependencies: 6 1091
-- Name: box3d_out(box3d); Type: FUNCTION; Schema: public; Owner: postgres -- Name: box3d_out(box3d); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION box3d_out(box3d) RETURNS cstring CREATE FUNCTION box3d_out(box3d) RETURNS cstring
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'BOX3D_out'; AS '$libdir/postgis-1.5', 'BOX3D_out';
   
   
ALTER FUNCTION public.box3d_out(box3d) OWNER TO postgres; ALTER FUNCTION public.box3d_out(box3d) OWNER TO postgres;
   
-- --
-- TOC entry 1090 (class 1247 OID 18354) -- TOC entry 1090 (class 1247 OID 18354)
-- Dependencies: 6 21 20 -- Dependencies: 6 21 20
-- Name: box3d; Type: TYPE; Schema: public; Owner: postgres -- Name: box3d; Type: TYPE; Schema: public; Owner: postgres
-- --
   
CREATE TYPE box3d ( CREATE TYPE box3d (
INTERNALLENGTH = 48, INTERNALLENGTH = 48,
INPUT = box3d_in, INPUT = box3d_in,
OUTPUT = box3d_out, OUTPUT = box3d_out,
ALIGNMENT = double, ALIGNMENT = double,
STORAGE = plain STORAGE = plain
); );
   
   
ALTER TYPE public.box3d OWNER TO postgres; ALTER TYPE public.box3d OWNER TO postgres;
   
-- --
-- TOC entry 1094 (class 0 OID 0) -- TOC entry 1094 (class 0 OID 0)
-- Name: box3d_extent; Type: SHELL TYPE; Schema: public; Owner: postgres -- Name: box3d_extent; Type: SHELL TYPE; Schema: public; Owner: postgres
-- --
   
CREATE TYPE box3d_extent; CREATE TYPE box3d_extent;
   
   
-- --
-- TOC entry 22 (class 1255 OID 18359) -- TOC entry 22 (class 1255 OID 18359)
-- Dependencies: 6 1094 -- Dependencies: 6 1094
-- Name: box3d_extent_in(cstring); Type: FUNCTION; Schema: public; Owner: postgres -- Name: box3d_extent_in(cstring); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION box3d_extent_in(cstring) RETURNS box3d_extent CREATE FUNCTION box3d_extent_in(cstring) RETURNS box3d_extent
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'BOX3D_in'; AS '$libdir/postgis-1.5', 'BOX3D_in';
   
   
ALTER FUNCTION public.box3d_extent_in(cstring) OWNER TO postgres; ALTER FUNCTION public.box3d_extent_in(cstring) OWNER TO postgres;
   
-- --
-- TOC entry 23 (class 1255 OID 18360) -- TOC entry 23 (class 1255 OID 18360)
-- Dependencies: 6 1094 -- Dependencies: 6 1094
-- Name: box3d_extent_out(box3d_extent); Type: FUNCTION; Schema: public; Owner: postgres -- Name: box3d_extent_out(box3d_extent); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION box3d_extent_out(box3d_extent) RETURNS cstring CREATE FUNCTION box3d_extent_out(box3d_extent) RETURNS cstring
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'BOX3D_extent_out'; AS '$libdir/postgis-1.5', 'BOX3D_extent_out';
   
   
ALTER FUNCTION public.box3d_extent_out(box3d_extent) OWNER TO postgres; ALTER FUNCTION public.box3d_extent_out(box3d_extent) OWNER TO postgres;
   
-- --
-- TOC entry 1093 (class 1247 OID 18358) -- TOC entry 1093 (class 1247 OID 18358)
-- Dependencies: 6 23 22 -- Dependencies: 6 23 22
-- Name: box3d_extent; Type: TYPE; Schema: public; Owner: postgres -- Name: box3d_extent; Type: TYPE; Schema: public; Owner: postgres
-- --
   
CREATE TYPE box3d_extent ( CREATE TYPE box3d_extent (
INTERNALLENGTH = 48, INTERNALLENGTH = 48,
INPUT = box3d_extent_in, INPUT = box3d_extent_in,
OUTPUT = box3d_extent_out, OUTPUT = box3d_extent_out,
ALIGNMENT = double, ALIGNMENT = double,
STORAGE = plain STORAGE = plain
); );
   
   
ALTER TYPE public.box3d_extent OWNER TO postgres; ALTER TYPE public.box3d_extent OWNER TO postgres;
   
-- --
-- TOC entry 1097 (class 0 OID 0) -- TOC entry 1097 (class 0 OID 0)
-- Name: chip; Type: SHELL TYPE; Schema: public; Owner: postgres -- Name: chip; Type: SHELL TYPE; Schema: public; Owner: postgres
-- --
   
CREATE TYPE chip; CREATE TYPE chip;
   
   
-- --
-- TOC entry 24 (class 1255 OID 18363) -- TOC entry 24 (class 1255 OID 18363)
-- Dependencies: 6 1097 -- Dependencies: 6 1097
-- Name: chip_in(cstring); Type: FUNCTION; Schema: public; Owner: postgres -- Name: chip_in(cstring); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION chip_in(cstring) RETURNS chip CREATE FUNCTION chip_in(cstring) RETURNS chip
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'CHIP_in'; AS '$libdir/postgis-1.5', 'CHIP_in';
   
   
ALTER FUNCTION public.chip_in(cstring) OWNER TO postgres; ALTER FUNCTION public.chip_in(cstring) OWNER TO postgres;
   
-- --
-- TOC entry 25 (class 1255 OID 18364) -- TOC entry 25 (class 1255 OID 18364)
-- Dependencies: 6 1097 -- Dependencies: 6 1097
-- Name: chip_out(chip); Type: FUNCTION; Schema: public; Owner: postgres -- Name: chip_out(chip); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION chip_out(chip) RETURNS cstring CREATE FUNCTION chip_out(chip) RETURNS cstring
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'CHIP_out'; AS '$libdir/postgis-1.5', 'CHIP_out';
   
   
ALTER FUNCTION public.chip_out(chip) OWNER TO postgres; ALTER FUNCTION public.chip_out(chip) OWNER TO postgres;
   
-- --
-- TOC entry 1096 (class 1247 OID 18362) -- TOC entry 1096 (class 1247 OID 18362)
-- Dependencies: 6 25 24 -- Dependencies: 6 25 24
-- Name: chip; Type: TYPE; Schema: public; Owner: postgres -- Name: chip; Type: TYPE; Schema: public; Owner: postgres
-- --
   
CREATE TYPE chip ( CREATE TYPE chip (
INTERNALLENGTH = variable, INTERNALLENGTH = variable,
INPUT = chip_in, INPUT = chip_in,
OUTPUT = chip_out, OUTPUT = chip_out,
ALIGNMENT = double, ALIGNMENT = double,
STORAGE = extended STORAGE = extended
); );
   
   
ALTER TYPE public.chip OWNER TO postgres; ALTER TYPE public.chip OWNER TO postgres;
   
-- --
-- TOC entry 1100 (class 0 OID 0) -- TOC entry 1100 (class 0 OID 0)
-- Name: geography; Type: SHELL TYPE; Schema: public; Owner: postgres -- Name: geography; Type: SHELL TYPE; Schema: public; Owner: postgres
-- --
   
CREATE TYPE geography; CREATE TYPE geography;
   
   
-- --
-- TOC entry 26 (class 1255 OID 18367) -- TOC entry 26 (class 1255 OID 18367)
-- Dependencies: 6 -- Dependencies: 6
-- Name: geography_analyze(internal); Type: FUNCTION; Schema: public; Owner: postgres -- Name: geography_analyze(internal); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION geography_analyze(internal) RETURNS boolean CREATE FUNCTION geography_analyze(internal) RETURNS boolean
LANGUAGE c STRICT LANGUAGE c STRICT
AS '$libdir/postgis-1.5', 'geography_analyze'; AS '$libdir/postgis-1.5', 'geography_analyze';
   
   
ALTER FUNCTION public.geography_analyze(internal) OWNER TO postgres; ALTER FUNCTION public.geography_analyze(internal) OWNER TO postgres;
   
-- --
-- TOC entry 27 (class 1255 OID 18368) -- TOC entry 27 (class 1255 OID 18368)
-- Dependencies: 6 1100 -- Dependencies: 6 1100
-- Name: geography_in(cstring, oid, integer); Type: FUNCTION; Schema: public; Owner: postgres -- Name: geography_in(cstring, oid, integer); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION geography_in(cstring, oid, integer) RETURNS geography CREATE FUNCTION geography_in(cstring, oid, integer) RETURNS geography
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'geography_in'; AS '$libdir/postgis-1.5', 'geography_in';
   
   
ALTER FUNCTION public.geography_in(cstring, oid, integer) OWNER TO postgres; ALTER FUNCTION public.geography_in(cstring, oid, integer) OWNER TO postgres;
   
-- --
-- TOC entry 28 (class 1255 OID 18369) -- TOC entry 28 (class 1255 OID 18369)
-- Dependencies: 6 1100 -- Dependencies: 6 1100
-- Name: geography_out(geography); Type: FUNCTION; Schema: public; Owner: postgres -- Name: geography_out(geography); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION geography_out(geography) RETURNS cstring CREATE FUNCTION geography_out(geography) RETURNS cstring
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'geography_out'; AS '$libdir/postgis-1.5', 'geography_out';
   
   
ALTER FUNCTION public.geography_out(geography) OWNER TO postgres; ALTER FUNCTION public.geography_out(geography) OWNER TO postgres;
   
-- --
-- TOC entry 29 (class 1255 OID 18370) -- TOC entry 29 (class 1255 OID 18370)
-- Dependencies: 6 -- Dependencies: 6
-- Name: geography_typmod_in(cstring[]); Type: FUNCTION; Schema: public; Owner: postgres -- Name: geography_typmod_in(cstring[]); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION geography_typmod_in(cstring[]) RETURNS integer CREATE FUNCTION geography_typmod_in(cstring[]) RETURNS integer
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'geography_typmod_in'; AS '$libdir/postgis-1.5', 'geography_typmod_in';
   
   
ALTER FUNCTION public.geography_typmod_in(cstring[]) OWNER TO postgres; ALTER FUNCTION public.geography_typmod_in(cstring[]) OWNER TO postgres;
   
-- --
-- TOC entry 30 (class 1255 OID 18371) -- TOC entry 30 (class 1255 OID 18371)
-- Dependencies: 6 -- Dependencies: 6
-- Name: geography_typmod_out(integer); Type: FUNCTION; Schema: public; Owner: postgres -- Name: geography_typmod_out(integer); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION geography_typmod_out(integer) RETURNS cstring CREATE FUNCTION geography_typmod_out(integer) RETURNS cstring
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'geography_typmod_out'; AS '$libdir/postgis-1.5', 'geography_typmod_out';
   
   
ALTER FUNCTION public.geography_typmod_out(integer) OWNER TO postgres; ALTER FUNCTION public.geography_typmod_out(integer) OWNER TO postgres;
   
-- --
-- TOC entry 1099 (class 1247 OID 18366) -- TOC entry 1099 (class 1247 OID 18366)
-- Dependencies: 26 6 27 28 29 30 -- Dependencies: 26 6 27 28 29 30
-- Name: geography; Type: TYPE; Schema: public; Owner: postgres -- Name: geography; Type: TYPE; Schema: public; Owner: postgres
-- --
   
CREATE TYPE geography ( CREATE TYPE geography (
INTERNALLENGTH = variable, INTERNALLENGTH = variable,
INPUT = geography_in, INPUT = geography_in,
OUTPUT = geography_out, OUTPUT = geography_out,
TYPMOD_IN = geography_typmod_in, TYPMOD_IN = geography_typmod_in,
TYPMOD_OUT = geography_typmod_out, TYPMOD_OUT = geography_typmod_out,
ANALYZE = geography_analyze, ANALYZE = geography_analyze,
ALIGNMENT = double, ALIGNMENT = double,
STORAGE = main STORAGE = main
); );
   
   
ALTER TYPE public.geography OWNER TO postgres; ALTER TYPE public.geography OWNER TO postgres;
   
-- --
-- TOC entry 1103 (class 0 OID 0) -- TOC entry 1103 (class 0 OID 0)
-- Name: geometry; Type: SHELL TYPE; Schema: public; Owner: postgres -- Name: geometry; Type: SHELL TYPE; Schema: public; Owner: postgres
-- --
   
CREATE TYPE geometry; CREATE TYPE geometry;
   
   
-- --
-- TOC entry 31 (class 1255 OID 18374) -- TOC entry 31 (class 1255 OID 18374)
-- Dependencies: 6 -- Dependencies: 6
-- Name: geometry_analyze(internal); Type: FUNCTION; Schema: public; Owner: postgres -- Name: geometry_analyze(internal); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION geometry_analyze(internal) RETURNS boolean CREATE FUNCTION geometry_analyze(internal) RETURNS boolean
LANGUAGE c STRICT LANGUAGE c STRICT
AS '$libdir/postgis-1.5', 'LWGEOM_analyze'; AS '$libdir/postgis-1.5', 'LWGEOM_analyze';
   
   
ALTER FUNCTION public.geometry_analyze(internal) OWNER TO postgres; ALTER FUNCTION public.geometry_analyze(internal) OWNER TO postgres;
   
-- --
-- TOC entry 32 (class 1255 OID 18375) -- TOC entry 32 (class 1255 OID 18375)
-- Dependencies: 6 1103 -- Dependencies: 6 1103
-- Name: geometry_in(cstring); Type: FUNCTION; Schema: public; Owner: postgres -- Name: geometry_in(cstring); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION geometry_in(cstring) RETURNS geometry CREATE FUNCTION geometry_in(cstring) RETURNS geometry
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'LWGEOM_in'; AS '$libdir/postgis-1.5', 'LWGEOM_in';
   
   
ALTER FUNCTION public.geometry_in(cstring) OWNER TO postgres; ALTER FUNCTION public.geometry_in(cstring) OWNER TO postgres;
   
-- --
-- TOC entry 33 (class 1255 OID 18376) -- TOC entry 33 (class 1255 OID 18376)
-- Dependencies: 6 1103 -- Dependencies: 6 1103
-- Name: geometry_out(geometry); Type: FUNCTION; Schema: public; Owner: postgres -- Name: geometry_out(geometry); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION geometry_out(geometry) RETURNS cstring CREATE FUNCTION geometry_out(geometry) RETURNS cstring
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'LWGEOM_out'; AS '$libdir/postgis-1.5', 'LWGEOM_out';
   
   
ALTER FUNCTION public.geometry_out(geometry) OWNER TO postgres; ALTER FUNCTION public.geometry_out(geometry) OWNER TO postgres;
   
-- --
-- TOC entry 34 (class 1255 OID 18377) -- TOC entry 34 (class 1255 OID 18377)
-- Dependencies: 6 1103 -- Dependencies: 6 1103
-- Name: geometry_recv(internal); Type: FUNCTION; Schema: public; Owner: postgres -- Name: geometry_recv(internal); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION geometry_recv(internal) RETURNS geometry CREATE FUNCTION geometry_recv(internal) RETURNS geometry
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'LWGEOM_recv'; AS '$libdir/postgis-1.5', 'LWGEOM_recv';
   
   
ALTER FUNCTION public.geometry_recv(internal) OWNER TO postgres; ALTER FUNCTION public.geometry_recv(internal) OWNER TO postgres;
   
-- --
-- TOC entry 35 (class 1255 OID 18378) -- TOC entry 35 (class 1255 OID 18378)
-- Dependencies: 6 1103 -- Dependencies: 6 1103
-- Name: geometry_send(geometry); Type: FUNCTION; Schema: public; Owner: postgres -- Name: geometry_send(geometry); Type: FUNCTION; Schema: public; Owner: postgres
-- --
   
CREATE FUNCTION geometry_send(geometry) RETURNS bytea CREATE FUNCTION geometry_send(geometry) RETURNS bytea
LANGUAGE c IMMUTABLE STRICT LANGUAGE c IMMUTABLE STRICT
AS '$libdir/postgis-1.5', 'LWGEOM_send'; AS '$libdir/postgis-1.5', 'LWGEOM_send';
   
   
ALTER FUNCTION public.geometry_send(geometry) OWNER TO postgres; ALTER FUNCTION public.geometry_send(geometry) OWNER TO postgres;
   
-- --
-- TOC entry 1102 (class 1247 OID 18373) -- TOC entry 1102 (class 1247 OID 18373)
-- Dependencies: 33 34 35 31 6 32 -- Dependencies: 33 34 35 31 6 32
-- Name: geometry; Type: TYPE; Schema: public; Owner: postgres -- Name: geometry; Type: TYPE; Schema: public; Owner: postgres
-- --
   
CREATE TYPE geometry ( CREATE TYPE geometry (
INTERNALLENGTH = variable, INTERNALLENGTH = variable,
INPUT = geometry_in, INPUT = geometry_in,
OUTPUT = geometry_out, OUTPUT = geometry_out,
RECEIVE = geometry_recv, RECEIVE = geometry_recv,
SEND = geometry_send, SEND = geometry_send,
ANALYZE = geometry_analyze,