Initial changes for 9.3 support

This commit is contained in:
Ian Barwick
2017-09-15 10:27:37 +09:00
parent e040f95aaa
commit 687c8b4e27
6 changed files with 66 additions and 6 deletions

View File

@@ -26,6 +26,8 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <libpq-fe.h>
#include <postgres_fe.h>
@@ -39,8 +41,8 @@
#include "dbutils.h"
#include "log.h"
#define MIN_SUPPORTED_VERSION "9.4"
#define MIN_SUPPORTED_VERSION_NUM 90400
#define MIN_SUPPORTED_VERSION "9.3"
#define MIN_SUPPORTED_VERSION_NUM 90300
#define REPLICATION_TYPE_PHYSICAL 1
#define REPLICATION_TYPE_BDR 2