Changeset 3993 for trunk/postgis/postgis.sql.in.c
- Timestamp:
- 04/12/09 03:56:33 (3 years ago)
- Files:
-
- 1 modified
-
trunk/postgis/postgis.sql.in.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/postgis/postgis.sql.in.c
r3939 r3993 360 360 LANGUAGE 'C' _IMMUTABLE_STRICT; -- WITH (isstrict,iscachable); 361 361 362 CREATEFUNCTION ST_geometry(box3d_extent) 363 RETURNS geometry 364 AS 'MODULE_PATHNAME','BOX3D_to_LWGEOM' 365 LANGUAGE 'C' _IMMUTABLE_STRICT; -- WITH (isstrict,iscachable); 362 366 -- End of temporary hack 363 367 … … 3672 3676 CREATE CAST (box3d_extent AS box3d) WITH FUNCTION ST_box3d_extent(box3d_extent) AS IMPLICIT; 3673 3677 CREATE CAST (box3d_extent AS box2d) WITH FUNCTION ST_box2d(box3d_extent) AS IMPLICIT; 3678 CREATE CAST (box3d_extent AS geometry) WITH FUNCTION ST_geometry(box3d_extent) AS IMPLICIT; 3674 3679 3675 3680 ---------------------------------------------------------------
