1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00

Update to 2.0.1

- Take maintainership

Changes:	https://github.com/tds-fdw/tds_fdw/releases
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2020-01-23 04:21:29 +00:00
parent 9216971d3e
commit a0435ade08
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=523873
3 changed files with 16 additions and 9 deletions

View File

@ -3,11 +3,11 @@
PORTNAME= tds_fdw
DISTVERSIONPREFIX= v
DISTVERSION= 2.0.0-alpha.3
PORTVERSION= 2.0.1
CATEGORIES= databases
PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}-
PKGNAMEPREFIX= postgresql${PGSQL_VER:S|.||}-
MAINTAINER= ports@FreeBSD.org
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= PostgreSQL foreign data wrapper to connect to TDS databases
LICENSE= PostgreSQL
@ -15,6 +15,7 @@ LICENSE= PostgreSQL
LIB_DEPENDS= libsybdb.so:databases/freetds
USES= gmake pgsql:9.2+
USE_GITHUB= yes
GH_ACCOUNT= tds-fdw

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1564904679
SHA256 (tds-fdw-tds_fdw-v2.0.0-alpha.3_GH0.tar.gz) = fcba4722171631332e06a91f22e0c22fbfd088e00abaf735be4d8c5512b14aa2
SIZE (tds-fdw-tds_fdw-v2.0.0-alpha.3_GH0.tar.gz) = 58656
TIMESTAMP = 1579684136
SHA256 (tds-fdw-tds_fdw-v2.0.1_GH0.tar.gz) = 031147a980ed502b3e095fda449e3eed65ef1bb97b2bb445217559d10bc0bdc5
SIZE (tds-fdw-tds_fdw-v2.0.1_GH0.tar.gz) = 62848

View File

@ -1,7 +1,13 @@
Tds_fdw is a PostgreSQL foreign data wrapper that can connect to databases that
use the Tabular Data Stream (TDS) protocol, such as Sybase databases and
Microsoft SQL server. The current version does not yet support JOIN push-down,
or write operations. It does support WHERE and column pushdowns when
match_column_names is enabled.
Microsoft SQL server.
This foreign data wrapper requires a library that implements the DB-Library
interface, such as FreeTDS. This has been tested with FreeTDS, but not the
proprietary implementations of DB-Library.
The current version does not yet support JOIN push-down, or write operations.
It does support WHERE and column pushdowns when match_column_names is enabled.
WWW: https://github.com/tds-fdw/tds_fdw