comparison src/main/java/org/monetdb/jdbc/MonetDatabaseMetaData.java @ 669:ec767930da50

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.
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 27 Oct 2022 21:41:54 +0200 (2022-10-27)
parents 2448ce017593
children 3034312c1eda
comparison
equal deleted inserted replaced
668:1d616f378ffc 669:ec767930da50
3433 * @return the connection that produced this metadata object 3433 * @return the connection that produced this metadata object
3434 */ 3434 */
3435 @Override 3435 @Override
3436 public Connection getConnection() { 3436 public Connection getConnection() {
3437 return con; 3437 return con;
3438 }
3439
3440 /* I don't find these in the spec!?! */
3441 public boolean rowChangesAreDetected(final int type) {
3442 return false;
3443 }
3444
3445 public boolean rowChangesAreVisible(final int type) {
3446 return false;
3447 } 3438 }
3448 3439
3449 //== 1.4 methods (JDBC 3) 3440 //== 1.4 methods (JDBC 3)
3450 3441
3451 /** 3442 /**