autovacuum.h

来自「PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统」· C头文件 代码 · 共 41 行

H
41
字号
/*------------------------------------------------------------------------- * * autovacuum.h *	  header file for integrated autovacuum daemon * * * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $PostgreSQL: pgsql/src/include/postmaster/autovacuum.h,v 1.3 2005/10/15 02:49:46 momjian Exp $ * *------------------------------------------------------------------------- */#ifndef AUTOVACUUM_H#define AUTOVACUUM_H/* GUC variables */extern bool autovacuum_start_daemon;extern int	autovacuum_naptime;extern int	autovacuum_vac_thresh;extern double autovacuum_vac_scale;extern int	autovacuum_anl_thresh;extern double autovacuum_anl_scale;extern int	autovacuum_vac_cost_delay;extern int	autovacuum_vac_cost_limit;/* Status inquiry functions */extern bool AutoVacuumingActive(void);extern bool IsAutoVacuumProcess(void);/* Functions to start autovacuum process, called from postmaster */extern void autovac_init(void);extern int	autovac_start(void);extern void autovac_stopped(void);#ifdef EXEC_BACKENDextern void AutoVacMain(int argc, char *argv[]);#endif#endif   /* AUTOVACUUM_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?