Merge branch 'master' into concurrent_indexes.
Conflicts: bin/pg_repack.c
This commit is contained in:
@ -84,4 +84,9 @@ extern void pgut_readopt(const char *path, pgut_option options[], int elevel);
|
||||
extern void pgut_setopt(pgut_option *opt, const char *optarg, pgut_optsrc src);
|
||||
extern bool pgut_keyeq(const char *lhs, const char *rhs);
|
||||
|
||||
/* So we don't need to fret over multiple calls to PQclear(), e.g.
|
||||
* in cleanup labels.
|
||||
*/
|
||||
#define CLEARPGRES(pgres) do { PQclear(pgres); pgres = NULL; } while (0)
|
||||
|
||||
#endif /* PGUT_FE_H */
|
||||
|
Reference in New Issue
Block a user