Add WAL usage reporting to ANALYZE VERBOSE output.
[pgsql.git] / contrib / hstore / hstore--1.7--1.8.sql
blobfb450a9d6ab1f715d39d8c8dec0e1f252e9ddca0
1 /* contrib/hstore/hstore--1.7--1.8.sql */
3 -- complain if script is sourced in psql, rather than via ALTER EXTENSION
4 \echo Use "ALTER EXTENSION hstore UPDATE TO '1.8'" to load this file. \quit
6 CREATE FUNCTION hstore_subscript_handler(internal)
7 RETURNS internal
8 AS 'MODULE_PATHNAME', 'hstore_subscript_handler'
9 LANGUAGE C STRICT IMMUTABLE PARALLEL SAFE;
11 ALTER TYPE hstore SET (
12   SUBSCRIPT = hstore_subscript_handler
15 -- Remove @ and ~
16 DROP OPERATOR @ (hstore, hstore);
17 DROP OPERATOR ~ (hstore, hstore);