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
This commit is contained in:
Bruce Momjian 2002-11-23 03:50:50 +00:00
parent 9416f3839d
commit c464212421
1 changed files with 2 additions and 0 deletions

View File

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