aboutsummaryrefslogtreecommitdiff
path: root/databases/postgresql-cstore_fdw
diff options
context:
space:
mode:
authorBabak Farrokhi <farrokhi@FreeBSD.org>2020-02-19 10:16:56 +0000
committerBabak Farrokhi <farrokhi@FreeBSD.org>2020-02-19 10:16:56 +0000
commitbb437c86a959c4a1603e44da34850d5606c4a5d5 (patch)
tree910a0a8a1b333c84661e9023c28d065e8868256f /databases/postgresql-cstore_fdw
parent856c73ae61aef7fc7b14db570c1896fea32e1a63 (diff)
downloadports-bb437c86a959c4a1603e44da34850d5606c4a5d5.tar.gz
ports-bb437c86a959c4a1603e44da34850d5606c4a5d5.zip
databases/postgresql-cstore_fdw: Update to 1.7.0
- Update to 1.7.0 (PostgreSQL 12 support) - Pet portlint
Notes
Notes: svn path=/head/; revision=526498
Diffstat (limited to 'databases/postgresql-cstore_fdw')
-rw-r--r--databases/postgresql-cstore_fdw/Makefile6
-rw-r--r--databases/postgresql-cstore_fdw/distinfo6
-rw-r--r--databases/postgresql-cstore_fdw/pkg-descr2
3 files changed, 7 insertions, 7 deletions
diff --git a/databases/postgresql-cstore_fdw/Makefile b/databases/postgresql-cstore_fdw/Makefile
index 6b35599f2bda..6ee52b4b368a 100644
--- a/databases/postgresql-cstore_fdw/Makefile
+++ b/databases/postgresql-cstore_fdw/Makefile
@@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= cstore_fdw
-PORTVERSION= 1.6.2
-PORTREVISION= 2
+PORTVERSION= 1.7.0
DISTVERSIONPREFIX= v
CATEGORIES= databases
PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}-
@@ -16,9 +15,10 @@ 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
diff --git a/databases/postgresql-cstore_fdw/distinfo b/databases/postgresql-cstore_fdw/distinfo
index 126a8e3eb05f..c1b1332bc28d 100644
--- a/databases/postgresql-cstore_fdw/distinfo
+++ b/databases/postgresql-cstore_fdw/distinfo
@@ -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
diff --git a/databases/postgresql-cstore_fdw/pkg-descr b/databases/postgresql-cstore_fdw/pkg-descr
index 1e79b400b0d2..9c565723f0ba 100644
--- a/databases/postgresql-cstore_fdw/pkg-descr
+++ b/databases/postgresql-cstore_fdw/pkg-descr
@@ -3,7 +3,7 @@ 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.