Skip to content

Instantly share code, notes, and snippets.

@jczaplew
Created December 14, 2017 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jczaplew/6762c1633cc04822d8edeabfc674a178 to your computer and use it in GitHub Desktop.
Save jczaplew/6762c1633cc04822d8edeabfc674a178 to your computer and use it in GitHub Desktop.
PostGIS Multipolygon Join
This file has been truncated, but you can view the full file.
--
-- PostgreSQL database dump
--
-- Dumped from database version 9.6.4
-- Dumped by pg_dump version 9.6.4
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: test; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE test (
id integer,
geom geometry
);
--
-- Data for Name: test; Type: TABLE DATA; Schema: public; Owner: -
--
COPY test (id, geom) FROM stdin;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment