コード例 #1
0
ファイル: pgstatfuncs.c プロジェクト: BALDELab/incubator-hawq
/*
 * Built-in function for resetting the counters
 */
Datum
pg_stat_reset(PG_FUNCTION_ARGS)
{
	pgstat_reset_counters();

	PG_RETURN_BOOL(true);
}
コード例 #2
0
ファイル: pgstatfuncs.c プロジェクト: codership/postgres
/* Reset all counters for the current database */
Datum
pg_stat_reset(PG_FUNCTION_ARGS)
{
	pgstat_reset_counters();

	PG_RETURN_VOID();
}