boot920c.sql 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. { ************************************************************************* }
  2. { }
  3. { Licensed Materials - Property of IBM and/or HCL }
  4. { }
  5. { IBM Informix Dynamic Server }
  6. { (c) Copyright IBM Corporation 1996, 2004 All rights reserved. }
  7. { (c) Copyright HCL Technologies Ltd. 2017. All Rights Reserved. }
  8. { }
  9. { ************************************************************************* }
  10. { }
  11. { Title: boot920c.sql }
  12. { }
  13. { Description: }
  14. { Bootstrapping script for a 9.20 post beta release }
  15. { }
  16. { ************************************************************************* }
  17. { }
  18. { ** IMPORTANT - PLEASE READ }
  19. { }
  20. { All types and routines referenced in this file must be prefixed }
  21. { with the user name "informix". E.g., use "informix.boolean" }
  22. { and not "boolean" }
  23. { }
  24. { Also, please follow the formatting conventions!!! }
  25. { }
  26. { Please ensure that the identifiers that you choose are <= 18 }
  27. { characters in length. Otherwise the changes would affect database }
  28. { reversion. }
  29. { }
  30. { ************************************************************************* }
  31. ---Rtree root Bounding Box function
  32. create dba function informix.rtreeRootBB(informix.lvarchar, informix.lvarchar)
  33. returns informix.lvarchar
  34. with (variant)
  35. external name '(rlt_root_bbox_info)'
  36. language C;
  37. grant execute on function informix.rtreeRootBB(informix.lvarchar, informix.lvarchar) to public as informix;