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
WIN32_DEV
Bruce Momjian 23 years ago
parent 9416f3839d
commit c464212421
  1. 2
      contrib/cube/cube.sql.in

@ -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
--

Loading…
Cancel
Save