Index: head/databases/postgresql-cstore_fdw/Makefile =================================================================== --- head/databases/postgresql-cstore_fdw/Makefile (revision 526497) +++ head/databases/postgresql-cstore_fdw/Makefile (revision 526498) @@ -1,31 +1,31 @@ # Created by: Jov # $FreeBSD$ PORTNAME= cstore_fdw -PORTVERSION= 1.6.2 -PORTREVISION= 2 +PORTVERSION= 1.7.0 DISTVERSIONPREFIX= v CATEGORIES= databases PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}- MAINTAINER= farrokhi@FreeBSD.org COMMENT= Columnar store for analytics with PostgreSQL LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libprotobuf-c.so:devel/protobuf-c +USES= gmake pgsql:9.3+ + SUB_FILES= pkg-message -USES= gmake pgsql:9.3+ LLD_UNSAFE= yes USE_GITHUB= yes GH_ACCOUNT= citusdata WANT_PGSQL= server post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/cstore_fdw.so .include Index: head/databases/postgresql-cstore_fdw/distinfo =================================================================== --- head/databases/postgresql-cstore_fdw/distinfo (revision 526497) +++ head/databases/postgresql-cstore_fdw/distinfo (revision 526498) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536052906 -SHA256 (citusdata-cstore_fdw-v1.6.2_GH0.tar.gz) = 35aabbc5a1608024e6aa038d06035e90d587e805eb706eb80652eb8547783491 -SIZE (citusdata-cstore_fdw-v1.6.2_GH0.tar.gz) = 92241 +TIMESTAMP = 1582106798 +SHA256 (citusdata-cstore_fdw-v1.7.0_GH0.tar.gz) = bd8a06654b483d27b48d8196cf6baac0c7828b431b49ac097923ac0c54a1c38c +SIZE (citusdata-cstore_fdw-v1.7.0_GH0.tar.gz) = 93313 Index: head/databases/postgresql-cstore_fdw/pkg-descr =================================================================== --- head/databases/postgresql-cstore_fdw/pkg-descr (revision 526497) +++ head/databases/postgresql-cstore_fdw/pkg-descr (revision 526498) @@ -1,18 +1,18 @@ Cstore_fdw is a extension of PostgreSQL. This extension uses the Optimized Row Columnar (ORC) format for its data layout. ORC improves upon the RCFile format developed at Facebook, and brings the following benefits: - Compression: Reduces in-memory and on-disk data size by 2-4x. Can be extended to support different codecs. - - Column projections: Only reads column data relevant to the query. + - Column projections: Only reads column data relevant to the query. Improves performance for I/O bound queries. - Skip indexes: Stores min/max statistics for row groups, and uses them to skip over unrelated rows. Further, cstore_fdw used the Postgres foreign data wrapper APIs and type representations with this extension. This brings: - Support for 40+ Postgres data types. The user can also create new types and use them. - Statistics collection. PostgreSQL's query optimizer uses these stats to evaluate different query plans and pick the best one. - Simple setup. Create foreign table and copy data. Run SQL. WWW: https://github.com/citusdata/cstore_fdw