From b6ca8fcd70e3c33addb2e897ad93975b7040cb6c Mon Sep 17 00:00:00 2001 From: Jeff Davis Date: Fri, 11 Sep 2020 16:50:06 -0700 Subject: [PATCH] extension control --- Makefile | 2 +- cstore_fdw--1.7--1.8.sql | 9 +++++++++ cstore_fdw.control | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 cstore_fdw--1.7--1.8.sql diff --git a/Makefile b/Makefile index f7943e61b..97f4d9e64 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ OBJS = cstore.o cstore_fdw.o cstore_writer.o cstore_reader.o \ EXTENSION = cstore_fdw 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 + cstore_fdw--1.0--1.1.sql cstore_fdw--1.7--1.8.sql REGRESS = fdw_create fdw_load fdw_query fdw_analyze fdw_data_types fdw_functions \ fdw_block_filtering fdw_drop fdw_insert fdw_copyto fdw_alter fdw_truncate diff --git a/cstore_fdw--1.7--1.8.sql b/cstore_fdw--1.7--1.8.sql new file mode 100644 index 000000000..b1519d73e --- /dev/null +++ b/cstore_fdw--1.7--1.8.sql @@ -0,0 +1,9 @@ +/* cstore_fdw/cstore_fdw--1.7--1.8.sql */ + +CREATE FUNCTION cstore_tableam_handler(internal) +RETURNS table_am_handler +LANGUAGE C +AS 'MODULE_PATHNAME', 'cstore_tableam_handler'; + +CREATE ACCESS METHOD cstore_tableam +TYPE TABLE HANDLER cstore_tableam_handler; diff --git a/cstore_fdw.control b/cstore_fdw.control index 6f781dcbb..57fd0808a 100644 --- a/cstore_fdw.control +++ b/cstore_fdw.control @@ -1,6 +1,6 @@ # cstore_fdw extension comment = 'foreign-data wrapper for flat cstore access' -default_version = '1.7' +default_version = '1.8' module_pathname = '$libdir/cstore_fdw' relocatable = false schema = cstore