Releases: EnterpriseDB/hdfs_fdw
v2.3.2
v2.3.1
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
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
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
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
This release includes:
Support for PostgreSQL 14 and EDB Postgres Advanced Server 14.
v2.0.8
This release comes with the following changes:
- Code cleanup and refactoring.
- Fixed building a SELECT query having a whole-row reference to avoid an error.
- Fixed crash with the queries involving LEFT JOIN LATERAL.
- Support for v9.5 is removed.
- Fixed quoting around table or column name having special characters with the hive-SQL quoting style.
v2.0.7
Stamp 2.0.7.
v2.0.6
Supports PG/EPAS v13.
Release v2.0.4
v11 support and other small fixes