Add MapUserType to support converstion between Map and hstore (#443)

This commit is contained in:
Shicong Huang 2020-01-15 10:37:14 -05:00 committed by GitHub
parent cf0e8e1b26
commit 6aa7c19344
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 293 additions and 40 deletions

View file

@ -16,6 +16,20 @@ SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: hstore; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS hstore WITH SCHEMA public;
--
-- Name: EXTENSION hstore; Type: COMMENT; Schema: -; Owner: -
--
COMMENT ON EXTENSION hstore IS 'data type for storing sets of (key, value) pairs';
SET default_tablespace = '';
SET default_with_oids = false;