Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changes/changelog.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions doc/changes/changes_4.0.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Virtual Schema for PostgreSQL 4.0.2, released 2026-08-04

Code name: Support legacy nullable metadata

## Summary

This release supports legacy nullable metadata.

## Bugfixes

* #96: Handle `null` in `isNullable` metadata after DB upgrade to 2025.1.12

## Dependency Updates

### Compile Dependency Updates

* Updated `com.exasol:virtual-schema-common-jdbc:14.0.4` to `14.0.5`

### Test Dependency Updates

* Updated `com.exasol:virtual-schema-common-jdbc:14.0.4` to `14.0.5`
* Updated `com.exasol:virtual-schema-shared-integration-tests:3.0.2` to `3.0.3`
2 changes: 1 addition & 1 deletion doc/user_guide/postgresql_user_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ The SQL statement below creates the adapter script, defines the Java class that
--/
CREATE OR REPLACE JAVA ADAPTER SCRIPT ADAPTER.JDBC_ADAPTER AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-14.0.4-postgresql-4.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-14.0.5-postgresql-4.0.2.jar;
%jar /buckets/<BFS service>/<bucket>/postgresql-<postgresql-driver-version>.jar;
/
```
Expand Down
2 changes: 1 addition & 1 deletion pk_generated_parent.pom

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>postgresql-virtual-schema</artifactId>
<version>4.0.1</version>
<version>4.0.2</version>
<name>Virtual Schema for PostgreSQL</name>
<description>Virtual Schema for connecting PostgreSQL as data source to Exasol</description>
<url>https://github.com/exasol/postgresql-virtual-schema/</url>
<properties>
<vscjdbc.version>14.0.4</vscjdbc.version>
<vscjdbc.version>14.0.5</vscjdbc.version>
<org.testcontainers.version>2.0.5</org.testcontainers.version>
</properties>
<dependencies>
Expand Down Expand Up @@ -105,7 +105,7 @@
<dependency>
<groupId>com.exasol</groupId>
<artifactId>virtual-schema-shared-integration-tests</artifactId>
<version>3.0.2</version>
<version>3.0.3</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -192,7 +192,7 @@
<parent>
<artifactId>postgresql-virtual-schema-generated-parent</artifactId>
<groupId>com.exasol</groupId>
<version>4.0.1</version>
<version>4.0.2</version>
<relativePath>pk_generated_parent.pom</relativePath>
</parent>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* This class contains the common integration test setup for all PostgreSQL virtual schemas.
*/
public class PostgresVirtualSchemaIntegrationTestSetup implements Closeable {
private static final String VIRTUAL_SCHEMAS_JAR_NAME_AND_VERSION = "virtual-schema-dist-14.0.4-postgresql-4.0.1.jar";
private static final String VIRTUAL_SCHEMAS_JAR_NAME_AND_VERSION = "virtual-schema-dist-14.0.5-postgresql-4.0.2.jar";
private static final Path PATH_TO_VIRTUAL_SCHEMAS_JAR = Path.of("target", VIRTUAL_SCHEMAS_JAR_NAME_AND_VERSION);
private static final String SCHEMA_EXASOL = "SCHEMA_EXASOL";
private static final String ADAPTER_SCRIPT_EXASOL = "ADAPTER_SCRIPT_EXASOL";
Expand Down