12345678910111213141516171819202122232425262728293031323334353637383940 |
- { ************************************************************************* }
- { }
- { Licensed Materials - Property of IBM and/or HCL }
- { }
- { IBM Informix Dynamic Server }
- { (c) Copyright IBM Corporation 1996, 2004 All rights reserved. }
- { (c) Copyright HCL Technologies Ltd. 2017. All Rights Reserved. }
- { }
- { ************************************************************************* }
- { }
- { Title: boot920c.sql }
- { }
- { Description: }
- { Bootstrapping script for a 9.20 post beta release }
- { }
- { ************************************************************************* }
- { }
- { ** IMPORTANT - PLEASE READ }
- { }
- { All types and routines referenced in this file must be prefixed }
- { with the user name "informix". E.g., use "informix.boolean" }
- { and not "boolean" }
- { }
- { Also, please follow the formatting conventions!!! }
- { }
- { Please ensure that the identifiers that you choose are <= 18 }
- { characters in length. Otherwise the changes would affect database }
- { reversion. }
- { }
- { ************************************************************************* }
- ---Rtree root Bounding Box function
- create dba function informix.rtreeRootBB(informix.lvarchar, informix.lvarchar)
- returns informix.lvarchar
- with (variant)
- external name '(rlt_root_bbox_info)'
- language C;
- grant execute on function informix.rtreeRootBB(informix.lvarchar, informix.lvarchar) to public as informix;
|