From 5ba1178840c79074754406426e27a45c87e0fd11 Mon Sep 17 00:00:00 2001 From: Murat Tuncer Date: Tue, 18 Feb 2020 14:04:29 +0300 Subject: [PATCH] Bump version number to 1.7 (#225) --- META.json | 6 +++--- Makefile | 2 +- README.md | 8 +++++++- cstore_fdw--1.6--1.7.sql | 3 +++ cstore_fdw--1.6.sql => cstore_fdw--1.7.sql | 2 +- cstore_fdw.control | 2 +- cstore_fdw.h | 2 +- 7 files changed, 17 insertions(+), 8 deletions(-) create mode 100644 cstore_fdw--1.6--1.7.sql rename cstore_fdw--1.6.sql => cstore_fdw--1.7.sql (97%) diff --git a/META.json b/META.json index dad4f45..37f0813 100644 --- a/META.json +++ b/META.json @@ -2,13 +2,13 @@ "name": "cstore_fdw", "abstract": "Columnar Store for PostgreSQL", "description": "PostgreSQL extension which implements a Columnar Store.", - "version": "1.6.2", - "maintainer": "Murat Tuncer ", + "version": "1.7.0", + "maintainer": "Murat Tuncer ", "license": "apache_2_0", "provides": { "cstore_fdw": { "abstract": "Foreign Data Wrapper for Columnar Store Tables", - "file": "cstore_fdw--1.6.sql", + "file": "cstore_fdw--1.7.sql", "docfile": "README.md", "version": "1.6.2" } diff --git a/Makefile b/Makefile index 86471fa..72daebc 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ OBJS = cstore.pb-c.o cstore_fdw.o cstore_writer.o cstore_reader.o \ cstore_metadata_serialization.o cstore_compression.o EXTENSION = cstore_fdw -DATA = cstore_fdw--1.6.sql cstore_fdw--1.5--1.6.sql cstore_fdw--1.4--1.5.sql \ +DATA = cstore_fdw--1.7.sql cstore_fdw--1.6--1.7.sql cstore_fdw--1.5--1.6.sql cstore_fdw--1.4--1.5.sql \ cstore_fdw--1.3--1.4.sql cstore_fdw--1.2--1.3.sql cstore_fdw--1.1--1.2.sql \ cstore_fdw--1.0--1.1.sql diff --git a/README.md b/README.md index 613b7bc..f41b088 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ most efficient execution plan for each query. commands. We also don't support single row inserts. -Updating from earlier versions to 1.6 +Updating from earlier versions to 1.7 --------------------------------------- To update an existing cstore_fdw installation from versions earlier than 1.6 @@ -288,6 +288,12 @@ the installation: Changeset --------- +### Version 1.7.0 +* (Fix) Add support for PostgreSQL 12 +* (Fix) Support count(t.*) from t type queries +* (Fix) Build failures for MacOS 10.14+ +* (Fix) Make foreign scan parallel safe +* (Fix) Add support for PostgreSQL 11 COPY ### Version 1.6.2 * (Fix) Add support for PostgreSQL 11 ### Version 1.6.1 diff --git a/cstore_fdw--1.6--1.7.sql b/cstore_fdw--1.6--1.7.sql new file mode 100644 index 0000000..c7f56f0 --- /dev/null +++ b/cstore_fdw--1.6--1.7.sql @@ -0,0 +1,3 @@ +/* cstore_fdw/cstore_fdw--1.6--1.6.sql */ + +-- No new functions or definitions were added in 1.7 diff --git a/cstore_fdw--1.6.sql b/cstore_fdw--1.7.sql similarity index 97% rename from cstore_fdw--1.6.sql rename to cstore_fdw--1.7.sql index 6994a51..ad2683f 100644 --- a/cstore_fdw--1.6.sql +++ b/cstore_fdw--1.7.sql @@ -1,4 +1,4 @@ -/* cstore_fdw/cstore_fdw--1.6.sql */ +/* cstore_fdw/cstore_fdw--1.7.sql */ -- complain if script is sourced in psql, rather than via CREATE EXTENSION \echo Use "CREATE EXTENSION cstore_fdw" to load this file. \quit diff --git a/cstore_fdw.control b/cstore_fdw.control index 7fded7f..a95b850 100644 --- a/cstore_fdw.control +++ b/cstore_fdw.control @@ -1,5 +1,5 @@ # cstore_fdw extension comment = 'foreign-data wrapper for flat cstore access' -default_version = '1.6' +default_version = '1.7' module_pathname = '$libdir/cstore_fdw' relocatable = true diff --git a/cstore_fdw.h b/cstore_fdw.h index cb5cd70..2bc3e9c 100644 --- a/cstore_fdw.h +++ b/cstore_fdw.h @@ -48,7 +48,7 @@ /* CStore file signature */ #define CSTORE_MAGIC_NUMBER "citus_cstore" #define CSTORE_VERSION_MAJOR 1 -#define CSTORE_VERSION_MINOR 6 +#define CSTORE_VERSION_MINOR 7 /* miscellaneous defines */ #define CSTORE_FDW_NAME "cstore_fdw"