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

数据库系统

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.   These are user-defined functions that can be bound to a Postgres backend
  3.   and called by Postgres to execute SQL functions of the same name.
  4.   The calling format for these functions is defined by the CREATE FUNCTION
  5.   SQL statement that binds them to the backend.
  6. *****************************************************************************/
  7. #include <string.h>
  8. #include <stdio.h>
  9. #include "postgres.h" /* for variable length type */
  10. #include "utils/palloc.h" /* for palloc */
  11. #include "executor/executor.h" /* for GetAttributeByName() */
  12. #include "utils/geo_decls.h" /* for point type */
  13. /* The following prototypes declare what we assume the user declares to
  14.    Postgres in his CREATE FUNCTION statement.
  15. */
  16. int add_one(int arg);
  17. Point    *makepoint(Point *pointx, Point *pointy);
  18. text    *copytext(text *t);
  19. bool c_overpaid(TupleTableSlot *t, /* the current instance of EMP */
  20.    int4 limit);
  21. int
  22. add_one(int arg)
  23. {
  24. return arg + 1;
  25. }
  26. Point *
  27. makepoint(Point *pointx, Point *pointy)
  28. {
  29. Point    *new_point = (Point *) palloc(sizeof(Point));
  30. new_point->x = pointx->x;
  31. new_point->y = pointy->y;
  32. return new_point;
  33. }
  34. text *
  35. copytext(text *t)
  36. {
  37. /*
  38.  * VARSIZE is the total size of the struct in bytes.
  39.  */
  40. text    *new_t = (text *) palloc(VARSIZE(t));
  41. MemSet(new_t, 0, VARSIZE(t));
  42. VARSIZE(new_t) = VARSIZE(t);
  43. /*
  44.  * VARDATA is a pointer to the data region of the struct.
  45.  */
  46. memcpy((void *) VARDATA(new_t), /* destination */
  47.    (void *) VARDATA(t), /* source */
  48.    VARSIZE(t) - VARHDRSZ); /* how many bytes */
  49. return new_t;
  50. }
  51. bool
  52. c_overpaid(TupleTableSlot *t, /* the current instance of EMP */
  53.    int4 limit)
  54. {
  55. bool isnull = false;
  56. int4 salary;
  57. salary = (int4) GetAttributeByName(t, "salary", &isnull);
  58. if (isnull)
  59. return false;
  60. return salary > limit;
  61. }