# HG changeset patch # User Martin van Dinther <martin.van.dinther@monetdbsolutions.com> # Date 1666899714 -7200 # Node ID ec767930da503e3555dd5874119d866f530ccf50 # Parent 1d616f378ffce4b616e70405e35328977a0eea9c Removed 2 non-JDBC-API methods. Some searching showed they are probably copied over from https://javadoc.io/static/org.postgresql/postgresql/9.4.1212.jre6/org/postgresql/jdbc/PgDatabaseMetaData.html#rowChangesAreDetected(int) when the first JDBC driver code was created in 2008. diff --git a/src/main/java/org/monetdb/jdbc/MonetDatabaseMetaData.java b/src/main/java/org/monetdb/jdbc/MonetDatabaseMetaData.java --- a/src/main/java/org/monetdb/jdbc/MonetDatabaseMetaData.java +++ b/src/main/java/org/monetdb/jdbc/MonetDatabaseMetaData.java @@ -3437,15 +3437,6 @@ public class MonetDatabaseMetaData return con; } - /* I don't find these in the spec!?! */ - public boolean rowChangesAreDetected(final int type) { - return false; - } - - public boolean rowChangesAreVisible(final int type) { - return false; - } - //== 1.4 methods (JDBC 3) /**