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

数据库系统

开发平台:

Unix_Linux

  1. /* ----------
  2.  * numeric.h
  3.  *
  4.  * Definitions for the exact numeric data type of Postgres
  5.  *
  6.  * 1998 Jan Wieck
  7.  *
  8.  * $Header: /usr/local/cvsroot/pgsql/src/include/utils/numeric.h,v 1.6.2.1 1999/08/02 05:25:26 scrappy Exp $
  9.  *
  10.  * ----------
  11.  */
  12. #ifndef _PG_NUMERIC_H_
  13. #define _PG_NUMERIC_H_
  14. /* ----------
  15.  * The hardcoded limits and defaults of the numeric data type
  16.  * ----------
  17.  */
  18. #define NUMERIC_MAX_PRECISION 1000
  19. #define NUMERIC_DEFAULT_PRECISION 30
  20. #define NUMERIC_DEFAULT_SCALE 6
  21. #define NUMERIC_MAX_DISPLAY_SCALE NUMERIC_MAX_PRECISION
  22. #define NUMERIC_MIN_DISPLAY_SCALE NUMERIC_DEFAULT_SCALE + 4
  23. #define NUMERIC_MAX_RESULT_SCALE (NUMERIC_MAX_PRECISION * 2)
  24. #define NUMERIC_MIN_RESULT_SCALE (NUMERIC_DEFAULT_PRECISION + 4)
  25. #define NUMERIC_UNPACKED_DATASIZE (NUMERIC_MAX_PRECISION * 2 + 4)
  26. /* ----------
  27.  * Sign values and macros to deal with n_sign_dscale
  28.  * ----------
  29.  */
  30. #define NUMERIC_SIGN_MASK 0xC000
  31. #define NUMERIC_POS 0x0000
  32. #define NUMERIC_NEG 0x4000
  33. #define NUMERIC_NAN 0xC000
  34. #define NUMERIC_SIGN(n) ((n)->n_sign_dscale & NUMERIC_SIGN_MASK)
  35. #define NUMERIC_DSCALE(n) ((n)->n_sign_dscale & ~NUMERIC_SIGN_MASK)
  36. #define NUMERIC_IS_NAN(n) (NUMERIC_SIGN(n) != NUMERIC_POS &&
  37. NUMERIC_SIGN(n) != NUMERIC_NEG)
  38. /* ----------
  39.  * The Numeric data type stored in the database
  40.  * ----------
  41.  */
  42. typedef struct NumericData
  43. {
  44. int32 varlen; /* Variable size */
  45. int16 n_weight; /* Weight of 1st digit */
  46. uint16 n_rscale; /* Result scale */
  47. uint16 n_sign_dscale; /* Sign + display scale */
  48. unsigned char n_data[1]; /* Digit data */
  49. } NumericData;
  50. typedef NumericData *Numeric;
  51. #define NUMERIC_HDRSZ (sizeof(int32) + sizeof(uint16) * 3)
  52. #endif  /* _PG_NUMERIC_H_ */