Add num_done counter to the pg_stat_checkpointer view.
[pgsql.git] / src / include / common / percentrepl.h
blobfbca9c1fc901ec564ac0311fc5575e530f6c08ab
1 /*-------------------------------------------------------------------------
3 * percentrepl.h
4 * Common routines to replace percent placeholders in strings
6 * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
9 * src/include/common/percentrepl.h
11 *-------------------------------------------------------------------------
13 #ifndef PERCENTREPL_H
14 #define PERCENTREPL_H
16 extern char *replace_percent_placeholders(const char *instr, const char *param_name, const char *letters,...);
18 #endif /* PERCENTREPL_H */