mkdefines
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:0k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. #! /usr/local/bin/python
  2. import string
  3. # change this if you have it somewhere else
  4. for l in open("/usr/local/pgsql/src/include/catalog/pg_type.h").readlines():
  5. tokens = string.split(l)
  6. if len(tokens) == 0 or tokens[0] != "#define": continue
  7. if tokens[1] in ('CASHOID', 'INT2OID', 'INT4OID', 'OIDOID', 'FLOAT4OID', 'FLOAT8OID'):
  8. print l,