atris / JDBC_FDW

FDW that wraps JDBC for PostgreSQL.It can be used to connect and fetch data from any data source that supports JDBC
Other
66 stars 38 forks source link

Report all Throwable issues, not just Exceptions #33

Closed ftzdomino closed 5 years ago

ftzdomino commented 5 years ago

Errors were not being caught and returned to the C code in postgres, making it difficult to diagnose an issue loading the JDBC driver. This change allows both Errors and Exceptions to be caught and handled.