Skip to content

Releases: EnterpriseDB/hdfs_fdw

v2.3.2

11 Jul 05:49
Compare
Choose a tag to compare

This release comes with the following changes:

  • Support for PostgreSQL 17 and upcoming EDB Postgres Advanced Server 17.
  • Add enable_limit_pushdown guc to control LIMIT/OFFSET push-down at the session level.
  • Remove support for v11.

v2.3.1

14 Jul 10:11
Compare
Choose a tag to compare

This release comes with the following changes:

  • Support for PostgreSQL 16 and EDB Postgres Advanced Server 16.
  • Various GUCs and table/server level options were added to control Join/Aggregate/Order by pushdowns.
  • Remove support for v10.

v2.3.0

14 Dec 07:22
Compare
Choose a tag to compare

This release includes the following:

Features:

  • Push down ORDER BY to remote hdfs servers.
    If possible, consider a path that adds the ORDER BY clause to the remote SQL so that we get the ordered result set from the foreign server itself. It might help us to have an efficient merge join.

  • Push down LIMIT/OFFSET to remote hdfs servers.
    Wherever applicable, perform LIMIT and OFFSET operations on the remote server. This reduces network traffic between local PostgreSQL and remote HDFS servers.

v2.2.0

17 May 10:35
Compare
Choose a tag to compare

This release includes the following:

Features:

  • Push down aggregates to remote HDFS servers.
    Push aggregates to the remote HDFS server instead of fetching all
    of the rows and aggregating them locally. This gives a very good
    performance boost for the cases where aggregates can be pushed down.

  • Add support for PostgreSQL 15 and EDB Postgres Advanced Server 15.

  • Remove support for v9.6.

Other improvements and Fixes:

  • Add support for the NUMERIC datatype.
  • Remove some extraneous code from function deparse logic.
  • Do not push expressions evaluating as non-builtin datatype.
  • Improve some test-coverage

v2.1.0

18 Nov 09:26
Compare
Choose a tag to compare

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.

v2.0.9

15 Sep 07:33
Compare
Choose a tag to compare

This release includes:

Support for PostgreSQL 14 and EDB Postgres Advanced Server 14.

v2.0.8

15 Jun 06:06
Compare
Choose a tag to compare

This release comes with the following changes:

  1. Code cleanup and refactoring.
  2. Fixed building a SELECT query having a whole-row reference to avoid an error.
  3. Fixed crash with the queries involving LEFT JOIN LATERAL.
  4. Support for v9.5 is removed.
  5. Fixed quoting around table or column name having special characters with the hive-SQL quoting style.

v2.0.7

21 Oct 13:13
Compare
Choose a tag to compare
Stamp 2.0.7.

v2.0.6

03 Aug 11:59
Compare
Choose a tag to compare

Supports PG/EPAS v13.

Release v2.0.4

28 Nov 09:18
Compare
Choose a tag to compare

v11 support and other small fixes