Skip to content

Commit

Permalink
Stamp 2.0.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevanchalke committed Aug 3, 2020
1 parent 15a46f4 commit d5797b1
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
7 changes: 7 additions & 0 deletions expected/misc.out
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
CREATE DATABASE fdw_regression ENCODING=UTF8 LC_CTYPE='en_US.UTF-8' TEMPLATE=template0;
\c fdw_regression postgres
CREATE EXTENSION hdfs_fdw;
-- Check version
SELECT hdfs_fdw_version();
hdfs_fdw_version
------------------
20006
(1 row)

--==========================================================================================
-- DESC Table Issue
-- In each query execution FDW used to issue a DESC table_name
Expand Down
7 changes: 7 additions & 0 deletions expected/misc_1.out
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@
CREATE DATABASE fdw_regression ENCODING=UTF8 LC_CTYPE='en_US.UTF-8' TEMPLATE=template0;
\c fdw_regression postgres
CREATE EXTENSION hdfs_fdw;
-- Check version
SELECT hdfs_fdw_version();
hdfs_fdw_version
------------------
20006
(1 row)

--==========================================================================================
-- DESC Table Issue
-- In each query execution FDW used to issue a DESC table_name
Expand Down
4 changes: 2 additions & 2 deletions hdfs_fdw.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ PG_MODULE_MAGIC;

/*
* In PG 9.5.1 the number will be 90501,
* our version is 2.0.5 so number will be 20005
* our version is 2.0.6 so number will be 20006
*/
#define CODE_VERSION 20005
#define CODE_VERSION 20006

PG_FUNCTION_INFO_V1(hdfs_fdw_handler);
PG_FUNCTION_INFO_V1(hdfs_fdw_version);
Expand Down
3 changes: 3 additions & 0 deletions sql/misc.sql
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ CREATE DATABASE fdw_regression ENCODING=UTF8 LC_CTYPE='en_US.UTF-8' TEMPLATE=tem

CREATE EXTENSION hdfs_fdw;

-- Check version
SELECT hdfs_fdw_version();

--==========================================================================================
-- DESC Table Issue
-- In each query execution FDW used to issue a DESC table_name
Expand Down

0 comments on commit d5797b1

Please sign in to comment.