mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-21 03:13:05 +08:00
1265a9c8f8
We can adjust the not-yet-released cube--1.4--1.5.sql upgrade rather than making a whole new version. KaiGai Kohei Discussion: https://postgr.es/m/CAOP8fzZO4y60QPTK=RGDXeVeVHV9tLHKOsh7voUOoUouVCPV8A@mail.gmail.com
22 lines
591 B
SQL
22 lines
591 B
SQL
/* contrib/cube/cube--1.4--1.5.sql */
|
|
|
|
-- complain if script is sourced in psql, rather than via ALTER EXTENSION
|
|
\echo Use "ALTER EXTENSION cube UPDATE TO '1.5'" to load this file. \quit
|
|
|
|
-- Remove @ and ~
|
|
DROP OPERATOR @ (cube, cube);
|
|
DROP OPERATOR ~ (cube, cube);
|
|
|
|
-- Add binary input/output handlers
|
|
CREATE FUNCTION cube_recv(internal)
|
|
RETURNS cube
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C IMMUTABLE STRICT PARALLEL SAFE;
|
|
|
|
CREATE FUNCTION cube_send(cube)
|
|
RETURNS bytea
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C IMMUTABLE STRICT PARALLEL SAFE;
|
|
|
|
ALTER TYPE cube SET ( RECEIVE = cube_recv, SEND = cube_send );
|