⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 autovacuum.h

📁 PostgreSQL 8.1.4的源码 适用于Linux下的开源数据库系统
💻 H
字号:
/*------------------------------------------------------------------------- * * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -