From 0eed188781134b08e2f47dc21d0fccad4c5bc039 Mon Sep 17 00:00:00 2001 From: Muhammad Usama Date: Mon, 29 Oct 2018 18:35:14 +0500 Subject: [PATCH] Stamp 2.0.4 Updated the README mentioning V10 and V11 support. --- README.md | 2 +- hdfs_fdw.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 294b51a..6be0bf8 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This PostgreSQL extension implements a Foreign Data Wrapper (FDW) for [Hadoop][1] (HDFS). Please note that this version of hdfs_fdw works with PostgreSQL and EDB -Postgres Advanced Server 9.3, 9.4, 9.5 and 9.6. +Postgres Advanced Server 9.3, 9.4, 9.5, 9.6, 10 and 11. What Is Apache [Hadoop][1]? -------------- diff --git a/hdfs_fdw.c b/hdfs_fdw.c index 5d3d5fa..95c0032 100644 --- a/hdfs_fdw.c +++ b/hdfs_fdw.c @@ -54,9 +54,9 @@ PG_MODULE_MAGIC; /* * In PG 9.5.1 the number will be 90501, - * our version is 2.0.3 so number will be 20003 + * our version is 2.0.4 so number will be 20004 */ -#define CODE_VERSION 20003 +#define CODE_VERSION 20004 PG_FUNCTION_INFO_V1(hdfs_fdw_handler); PG_FUNCTION_INFO_V1(hdfs_fdw_version);