Commit c4642124 authored by Bruce Momjian's avatar Bruce Momjian

When I made the cube(text) function for 7.3, I neglected to add a

matching create cast command. The attached diff adds a create cast as
assignment to cube.sql.in .

Bruno Wolff III
parent 9416f383
......@@ -32,6 +32,8 @@ LANGUAGE 'C' IMMUTABLE STRICT;
COMMENT ON FUNCTION cube(text) IS 'convert text to cube';
CREATE CAST (text AS cube) WITH FUNCTION cube(text) AS ASSIGNMENT;
--
-- External C-functions for R-tree methods
--
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment