Changeset: d311affc65f0 for monetdb-java URL: https://dev.monetdb.org/hg/monetdb-java/rev/d311affc65f0 Modified Files: ChangeLog-Archive release.md src/main/java/org/monetdb/client/JdbcClient.java src/main/java/org/monetdb/jdbc/MonetStatement.java src/main/java/org/monetdb/mcl/parser/HeaderLineParser.java src/main/java/org/monetdb/util/MDBvalidator.java tests/JDBC_API_Tester.java Branch: default Log Message:
Stop referring to monetdb.org/bugzilla, point straight to github. diffs (163 lines): diff --git a/ChangeLog-Archive b/ChangeLog-Archive --- a/ChangeLog-Archive +++ b/ChangeLog-Archive @@ -308,7 +308,7 @@ - Corrected Statement.executeBatch() method. It now implicitly clears the batch buffer, ready to accept new addBatch() calls without the need for an explicit clearBatch() call. - See also https://www.monetdb.org/bugzilla/show_bug.cgi?id=6953 + See also https://github.com/MonetDB/MonetDB/issues/6953 * Wed Feb 19 2020 Martin van Dinther <martin.van.dint...@monetdbsolutions.com> - Corrected the return value of getCatalogTerm() to "cat". @@ -322,14 +322,14 @@ monetdb-mcl-1.18.jre7.jar and jdbcclient.jre7.jar - Following issues are resolved with this new MonetDB JDBC driver release: - JDBC: Support for Connection.prepareCall() - See https://www.monetdb.org/bugzilla/show_bug.cgi?id=6402 + See https://github.com/MonetDB/MonetDB/issues/6402 We implemented the java.sql.CallableStatement interface. - Jdbc connection hangs - See https://www.monetdb.org/bugzilla/show_bug.cgi?id=6571 + See https://github.com/MonetDB/MonetDB/issues/6571 - Mix of long and short queries make JDBC-driver hang - See https://www.monetdb.org/bugzilla/show_bug.cgi?id=6693 + See https://github.com/MonetDB/MonetDB/issues/6693 - Example SQLcopyinto.java does not work - See https://www.monetdb.org/bugzilla/show_bug.cgi?id=6646 + See https://github.com/MonetDB/MonetDB/issues/6646 Also improvements are made in: - reducing the number of objects created (and thereby heap memory size) - reducing number of methods called @@ -392,7 +392,7 @@ * Thu Mar 21 2019 Martin van Dinther <martin.van.dint...@monetdbsolutions.com> - Added implementation of java.sql.CallableStatement interface. Some standard Java applications require this JDBC interface for executing SQL stored procedures. - This implementation resolves request: https://www.monetdb.org/bugzilla/show_bug.cgi?id=6402 + This implementation resolves request: https://github.com/MonetDB/MonetDB/issues/6402 * Thu Mar 7 2019 Martin van Dinther <martin.van.dint...@monetdbsolutions.com> - Improved MonetDatabaseMetaData methods: @@ -452,7 +452,7 @@ year value less than 1000. It would throw an SQLDataException with message: Could not convert value to a Date. Expected JDBC date escape format yyyy-[m]m-[d]d. - See also: https://www.monetdb.org/bugzilla/show_bug.cgi?id=6468 + See also: https://github.com/MonetDB/MonetDB/issues/6468 * Mon Oct 23 2017 Sjoerd Mullender <sjo...@acm.org> - Compiled and released new jars: monetdb-jdbc-2.27.jar, monetdb-mcl-1.16.jar @@ -493,7 +493,7 @@ - Corrected PreparedStatement methods setString(int, String) and setObject(int, Object, ...) in case the target parameter data type was json or inet or url or uuid. See also - https://www.monetdb.org/bugzilla/show_bug.cgi?id=6382 + https://github.com/MonetDB/MonetDB/issues/6382 * Thu Aug 24 2017 Martin van Dinther <martin.van.dint...@monetdbsolutions.com> - Implemented PreparedStatement method setURL(int, URL). @@ -519,7 +519,7 @@ - Corrected implementation of PreparedStatement method setObject(int parameterIndex, Object x, int targetSqlType, int scaleOrLength) for the case the targetSqlType is Types.CLOB. - See also: https://www.monetdb.org/bugzilla/show_bug.cgi?id=6349 + See also: https://github.com/MonetDB/MonetDB/issues/6349 * Thu Mar 30 2017 Sjoerd Mullender <sjo...@acm.org> - Compiled and released new jars: monetdb-jdbc-2.25.jar, monetdb-mcl-1.15.jar @@ -529,7 +529,7 @@ - Corrected ResultSetMetaData methods getColumnLabel(int), getColomnName(int), getTableName(int) and getSchemaName(int) for names which contain special characters such as a space, a tab, a comma, a double quote, etc. - See also: https://www.monetdb.org/bugzilla/show_bug.cgi?id=6183 + See also: https://github.com/MonetDB/MonetDB/issues/6183 * Wed Dec 21 2016 Sjoerd Mullender <sjo...@acm.org> - Compiled and released new jars: monetdb-jdbc-2.24.jar, monetdb-mcl-1.14.jar diff --git a/release.md b/release.md --- a/release.md +++ b/release.md @@ -144,7 +144,7 @@ Currently implemented JDBC 4.2 interface The following methods/options are NOT useable/supported: - cancel (query execution cannot be terminated, once started) see also: https://github.com/MonetDB/monetdb-java/issues/7 - or https://www.monetdb.org/bugzilla/show_bug.cgi?id=6222 + or https://github.com/MonetDB/MonetDB/issues/6222 - execute with column indices or names - executeUpdate with column indices or names - setMaxFieldSize diff --git a/src/main/java/org/monetdb/client/JdbcClient.java b/src/main/java/org/monetdb/client/JdbcClient.java --- a/src/main/java/org/monetdb/client/JdbcClient.java +++ b/src/main/java/org/monetdb/client/JdbcClient.java @@ -1192,12 +1192,12 @@ public final class JdbcClient { } if (batchSize > 0 && i % batchSize == 0) { stmt.executeBatch(); - // stmt.clearBatch(); // this is no longer needed after call executeBatch(), see https://www.monetdb.org/bugzilla/show_bug.cgi?id=6953 + // stmt.clearBatch(); // this is no longer needed after call executeBatch(), see https://github.com/MonetDB/MonetDB/issues/6953 } } stmt.addBatch(query.toString()); stmt.executeBatch(); - // stmt.clearBatch(); // this is no longer needed after call executeBatch(), see https://www.monetdb.org/bugzilla/show_bug.cgi?id=6953 + // stmt.clearBatch(); // this is no longer needed after call executeBatch(), see https://github.com/MonetDB/MonetDB/issues/6953 } catch (SQLException e) { do { System.err.println("Error at line " + i + ": [" + e.getSQLState() + "] " + e.getMessage()); diff --git a/src/main/java/org/monetdb/jdbc/MonetStatement.java b/src/main/java/org/monetdb/jdbc/MonetStatement.java --- a/src/main/java/org/monetdb/jdbc/MonetStatement.java +++ b/src/main/java/org/monetdb/jdbc/MonetStatement.java @@ -232,7 +232,7 @@ public class MonetStatement @Override public void cancel() throws SQLException { throw new SQLFeatureNotSupportedException("Query cancelling is currently not supported by the driver.", "0A000"); - // a request to implement this is already logged, see: https://www.monetdb.org/bugzilla/show_bug.cgi?id=6222 + // a request to implement this is already logged, see: https://github.com/MonetDB/MonetDB/issues/6222 } /** diff --git a/src/main/java/org/monetdb/mcl/parser/HeaderLineParser.java b/src/main/java/org/monetdb/mcl/parser/HeaderLineParser.java --- a/src/main/java/org/monetdb/mcl/parser/HeaderLineParser.java +++ b/src/main/java/org/monetdb/mcl/parser/HeaderLineParser.java @@ -144,7 +144,7 @@ public final class HeaderLineParser exte * * As of Oct2014-SP1 release MAPI adds double quotes around names when * the name contains a comma or a tab or a space or a # or " or \ escape character. - * See issue: https://www.monetdb.org/bugzilla/show_bug.cgi?id=3616 + * See issue: https://github.com/MonetDB/MonetDB/issues/3616 * If the parsed name string part has a " as first and last character, * we remove those added double quotes here. * diff --git a/src/main/java/org/monetdb/util/MDBvalidator.java b/src/main/java/org/monetdb/util/MDBvalidator.java --- a/src/main/java/org/monetdb/util/MDBvalidator.java +++ b/src/main/java/org/monetdb/util/MDBvalidator.java @@ -976,7 +976,7 @@ public final class MDBvalidator { // {"storagemodel", "schema, table, column", null}, // is a view on storagemodelinput // {"tablestoragemodel", "schema, table", null}, // is a view on storagemodelinput - {"rejects", "rowid", "19"}, // querying this view caused problems in versions pre Jul2015, see https://www.monetdb.org/bugzilla/show_bug.cgi?id=3794 + {"rejects", "rowid", "19"}, // querying this view caused problems in versions pre Jul2015, see https://github.com/MonetDB/MonetDB/issues/3794 // new tables introduced in Jul2015 release (11.21.5) {"keywords", "keyword", "21"}, diff --git a/tests/JDBC_API_Tester.java b/tests/JDBC_API_Tester.java --- a/tests/JDBC_API_Tester.java +++ b/tests/JDBC_API_Tester.java @@ -2204,7 +2204,7 @@ public final class JDBC_API_Tester { sb.append(" passed\n"); while (rs.next()) { - // test fix for https://www.monetdb.org/bugzilla/show_bug.cgi?id=4026 + // test fix for https://github.com/MonetDB/MonetDB/issues/4026 Short ti = (Short) rs.getObject(1); Short si = (Short) rs.getObject(2); Integer i = (Integer) rs.getObject(3); @@ -2291,7 +2291,7 @@ public final class JDBC_API_Tester { pstmt.executeBatch(); sb.append("3. inserted 1 large string\n"); - /* test issue reported at https://www.monetdb.org/bugzilla/show_bug.cgi?id=3470 */ + /* test issue reported at https://github.com/MonetDB/MonetDB/issues/3470 */ pstmt.setLong(1, -2L); pstmt.setClob(2, new StringReader(largeStr)); pstmt.setDouble(3, -2.0); _______________________________________________ checkin-list mailing list -- checkin-list@monetdb.org To unsubscribe send an email to checkin-list-le...@monetdb.org