Skip to content

Releases: exasol/virtual-schemas

Join pushdown for Oracle dialect

08 May 07:27
Compare
Choose a tag to compare

Summary

The JDBC Adapter can now handle join pushdowns for the Oracle dialect, Keep in mind that the Exasol database generates join pushdowns from version 6.2 on. Furthermore Exasol version 6.1.2 / 6.0.15 or later is required for this version of the JDBC adapter, If you use an older version of Exasol, you have to add the JOIN capabilities to the EXCLUDED_CAPABILITIES:
excluded_capabilities='JOIN,JOIN_TYPE_INNER,JOIN_TYPE_LEFT_OUTER,JOIN_TYPE_RIGHT_OUTER,JOIN_TYPE_FULL_OUTER,JOIN_CONDITION_EQUI'

Changes

  • #150 Enable Join pushdown for Oracle dialect

Join pushdown for PostgreSQL dialect

07 May 12:14
Compare
Choose a tag to compare

Summary

The JDBC Adapter can now handle join pushdowns for the PostgreSQL dialect, Keep in mind that the Exasol database generates join pushdowns from version 6.2 on. Furthermore Exasol version 6.1.2 / 6.0.15 or later is required for this version of the JDBC adapter, If you use an older version of Exasol, you have to add the JOIN capabilities to the EXCLUDED_CAPABILITIES:
excluded_capabilities='JOIN,JOIN_TYPE_INNER,JOIN_TYPE_LEFT_OUTER,JOIN_TYPE_RIGHT_OUTER,JOIN_TYPE_FULL_OUTER,JOIN_CONDITION_EQUI'

Changes

  • #151: Enable Join pushdown for PostgreSQL

Bugfix: Table filter in refresh requests

07 May 08:34
b8c686d
Compare
Choose a tag to compare

Summary

This release fixes a bug where instead for selected tables the metadata of all tables was refreshed in case of an ALTER VIRTUAL SCHEMA statement.

Changes

  • #171: Bugfix: Table filter in refresh request

AWS Athena support

07 May 05:46
0bc21f8
Compare
Choose a tag to compare

Summary

With this release Exasol's Virtual Schemas support Amazon's AWS Athena, a managed service derived from the Open Source distributes SQL query engine Presto.

This allows users to query file-based data stores (e.g. CSV and Parquet) stored on S3.

Changes

  • #156: AWS Athena support

Join pushdown for Exasol dialect

06 May 09:30
Compare
Choose a tag to compare

Summary:

The JDBC Adapter can now handle join pushdowns for the Exasol dialect, Keep in mind that the Exasol database generates join pushdowns from version 6.2 on. Furthermore Exasol version 6.1.2 / 6.0.15 or later is required for this version of the JDBC adapter, If you use an older version of Exasol, you have to add JOIN to the EXCLUDED_CAPABILITIES.

Changes:

  • #149: Enable Join pushdown for Exasol

Redshift Spectrum support

03 May 12:08
9c8cdb4
Compare
Choose a tag to compare

Summary

With this release Exasol's Virtual Schemas support reading data not only from regular Amazon's AWS Redshift tables, but also from so-called "external tables" mapped via Redshift Spectrum.

Changes

  • #124: Redshift Spectrum support

Refactoring: Remote metadata reading

03 May 10:27
b04147b
Compare
Choose a tag to compare

Summary

This is a refactoring release, request dispatching and SQL dialect handling and remote metadata handling were modularized. A large number of Sonar findings was resolved.

Changes

  • #45: Rewrote parts of the JDBC adapter to use the new common code
  • #121: Used new request dispatching from common
  • #123: Improved how schemas identify support for structural elements
  • #131: Refactored metadata reading
  • #147: Enabled Hive integration test
  • #154: Rewrote documentation after refactoring
  • #155: moved property validation logic to dialects
  • #162: Automatically register SQL dialects
  • #167: Fixed broken JavaDoc

Exasol Virtual Schema JDBC Adapter 1.8.1

20 Mar 17:50
7292174
Compare
Choose a tag to compare
  • fixed problem in creation of column description for IMPORT FROM JDBC
  • #99 fixed bug in oracle dialect (IMPORT FROM JDBC) and timestamp types
  • #99 do not cast timestamps when the native ORA import is used

Exasol Virtual Schema JDBC Adapter 1.6.0

07 Mar 09:01
Compare
Choose a tag to compare
  • #93 documentation for PostgreSQL identifier handling
  • #93 added POSTGRESQL_IDENTIFIER_MAPPING property

For details see: https://github.com/exasol/virtual-schemas/blob/master/jdbc-adapter/doc/sql_dialects/postgresql.md

Exasol Virtual Schema JDBC Adapter 1.5.1

27 Feb 15:18
fd8bffc
Compare
Choose a tag to compare
  • removed common part (#82)
  • fixed exposed password bug (#83)
  • preparations for join pushdown