issn.sql
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:2k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. --
  2. -- PostgreSQL code for ISSNs.
  3. --
  4. -- $Id: issn.sql,v 1.1 1998/08/17 03:35:05 scrappy Exp $
  5. --
  6. load '/usr/local/pgsql/modules/issn.so';
  7. --
  8. -- Input and output functions and the type itself:
  9. --
  10. create function issn_in(opaque)
  11. returns opaque
  12. as '/usr/local/pgsql/modules/issn.so'
  13. language 'c';
  14. create function issn_out(opaque)
  15. returns opaque
  16. as '/usr/local/pgsql/modules/issn.so'
  17. language 'c';
  18. create type issn (
  19. internallength = 16,
  20. externallength = 9,
  21. input = issn_in,
  22. output = issn_out
  23. );
  24. --
  25. -- The various boolean tests:
  26. --
  27. create function issn_lt(issn, issn)
  28. returns bool
  29. as '/usr/local/pgsql/modules/issn.so'
  30. language 'c';
  31. create function issn_le(issn, issn)
  32. returns bool
  33. as '/usr/local/pgsql/modules/issn.so'
  34. language 'c';
  35. create function issn_eq(issn, issn)
  36. returns bool
  37. as '/usr/local/pgsql/modules/issn.so'
  38. language 'c';
  39. create function issn_ge(issn, issn)
  40. returns bool
  41. as '/usr/local/pgsql/modules/issn.so'
  42. language 'c';
  43. create function issn_gt(issn, issn)
  44. returns bool
  45. as '/usr/local/pgsql/modules/issn.so'
  46. language 'c';
  47. create function issn_ne(issn, issn)
  48. returns bool
  49. as '/usr/local/pgsql/modules/issn.so'
  50. language 'c';
  51. --
  52. -- Now the operators.  Note how some of the parameters to some
  53. -- of the 'create operator' commands are commented out.  This
  54. -- is because they reference as yet undefined operators, and
  55. -- will be implicitly defined when those are, further down.
  56. --
  57. create operator < (
  58. leftarg = issn,
  59. rightarg = issn,
  60. -- negator = >=,
  61. procedure = issn_lt
  62. );
  63. create operator <= (
  64. leftarg = issn,
  65. rightarg = issn,
  66. -- negator = >,
  67. procedure = issn_le
  68. );
  69. create operator = (
  70. leftarg = issn,
  71. rightarg = issn,
  72. commutator = =,
  73. -- negator = <>,
  74. procedure = issn_eq
  75. );
  76. create operator >= (
  77. leftarg = issn,
  78. rightarg = issn,
  79. negator = <,
  80. procedure = issn_ge
  81. );
  82. create operator > (
  83. leftarg = issn,
  84. rightarg = issn,
  85. negator = <=,
  86. procedure = issn_gt
  87. );
  88. create operator <> (
  89. leftarg = issn,
  90. rightarg = issn,
  91. negator = =,
  92. procedure = issn_ne
  93. );
  94. --
  95. -- eof
  96. --