mirror of
https://github.com/postgres/postgres.git
synced 2025-07-23 03:21:12 +03:00
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:
@ -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
|
||||
--
|
||||
|
Reference in New Issue
Block a user