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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * cluster.h
  4.  *   header file for postgres cluster command stuff
  5.  *
  6.  * Copyright (c) 1994-5, Regents of the University of California
  7.  *
  8.  * $Id: cluster.h,v 1.7 1999/02/13 23:21:17 momjian Exp $
  9.  *
  10.  *-------------------------------------------------------------------------
  11.  */
  12. #ifndef CLUSTER_H
  13. #define CLUSTER_H
  14. /*
  15.  * defines for contant stuff
  16.  */
  17. #define _TEMP_RELATION_KEY_ "clXXXXXXXX"
  18. #define _SIZE_OF_TEMP_RELATION_KEY_ 11
  19. /*
  20.  * functions
  21.  */
  22. extern void cluster(char *oldrelname, char *oldindexname);
  23. #endif  /* CLUSTER_H */