
delay and limit, both as global GUCs and as table-specific entries in pg_autovacuum. stats_reset_on_server_start is now OFF by default, but a reset is forced if we did WAL replay. XID-wrap vacuums do not ANALYZE, but do FREEZE if it's a template database. Alvaro Herrera
44 lines
927 B
C
44 lines
927 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* hba.h
|
|
* Interface to hba.c
|
|
*
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/libpq/hba.h,v 1.40 2005/08/11 21:11:48 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef HBA_H
|
|
#define HBA_H
|
|
|
|
#include "nodes/pg_list.h"
|
|
|
|
|
|
typedef enum UserAuth
|
|
{
|
|
uaReject,
|
|
uaKrb5,
|
|
uaTrust,
|
|
uaIdent,
|
|
uaPassword,
|
|
uaCrypt,
|
|
uaMD5
|
|
#ifdef USE_PAM
|
|
,uaPAM
|
|
#endif /* USE_PAM */
|
|
} UserAuth;
|
|
|
|
typedef struct Port hbaPort;
|
|
|
|
extern List **get_role_line(const char *role);
|
|
extern void load_hba(void);
|
|
extern void load_ident(void);
|
|
extern void load_role(void);
|
|
extern int hba_getauthmethod(hbaPort *port);
|
|
extern int authident(hbaPort *port);
|
|
extern bool read_pg_database_line(FILE *fp, char *dbname, Oid *dboid,
|
|
Oid *dbtablespace, TransactionId *dbfrozenxid,
|
|
TransactionId *dbvacuumxid);
|
|
|
|
#endif /* HBA_H */
|