Initial table definitions and coding for repmgr client utility

This commit is contained in:
Ian Barwick
2017-04-19 22:41:20 +09:00
parent 2704ab0536
commit 1631917715
7 changed files with 227 additions and 8 deletions

View File

@@ -5,12 +5,16 @@
#ifndef _REPMGR_H_
#define _REPMGR_H_
#include <stdio.h>
#include <stdlib.h>
#include <libpq-fe.h>
#include <postgres_fe.h>
#include <getopt_long.h>
#include <pqexpbuffer.h>
#define MIN_SUPPORTED_VERSION "9.3"
#define MIN_SUPPORTED_VERSION_NUM 90300
// to errcodes.h
#define SUCCESS 0
#endif