freebsd-ports/databases/postgresql-mysql_fdw/Makefile
Torsten Zuehlsdorff 4394f1f2bc databases/postgresql-mysql_fdw: Update from 2.5.5 to 2.6.0
This release includes the following:

Feature:

    Join Push down - If we have a join between two foreign tables from the same remote server, push that join down to the remote server instead of fetching all the rows for both the tables and performing a join locally.

Other Fixes:

    Fixes crash with IMPORT FOREIGN SCHEMA when executed repeatedly.
    Restricts fetching of the system attributes from the remote relation.
    Fixes compiler warning due to clash with MySQL library macro.
    Costs are not shown in the explain output when the COSTS explain option is OFF.
    Uses environment variables in tests for connection parameters.
    No longer supports PG/EPAS version 9.5.

Sponsored by:	Bounce Experts
2021-05-17 14:47:44 +02:00

31 lines
762 B
Makefile

# Created by: Jov <amutu@amutu.com>
PORTNAME= mysql_fdw
DISTVERSIONPREFIX= REL-
DISTVERSION= 2_6_0
CATEGORIES= databases
PKGNAMEPREFIX= postgresql${PGSQL_VER:S/.//}-
MAINTAINER= tz@FreeBSD.org
COMMENT= PostgreSQL foreign data wrapper for MySQL
LICENSE= PostgreSQL
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= gmake pgsql:9.6-13 mysql
WANT_PGSQL= server
USE_GITHUB= yes
GH_ACCOUNT= EnterpriseDB
MAKE_ENV= USE_PGXS=1
PLIST_FILES= lib/postgresql/mysql_fdw.so \
share/postgresql/extension/mysql_fdw--1.0--1.1.sql \
share/postgresql/extension/mysql_fdw--1.0.sql \
share/postgresql/extension/mysql_fdw--1.1.sql \
share/postgresql/extension/mysql_fdw.control
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/mysql_fdw.so
.include <bsd.port.mk>