# HG changeset patch # User Martin van Dinther <martin.van.dinther@monetdbsolutions.com> # Date 1564586222 -7200 # Node ID 611c0954b0e67153bea0c929aaddc3a6ecdbfdc3 # Parent d477b3103a8b4f1d295545914a32649ede395efc Add a reference to the request logged in bugzilla to implement Statement.cancel() method diff --git a/src/main/java/nl/cwi/monetdb/jdbc/MonetStatement.java b/src/main/java/nl/cwi/monetdb/jdbc/MonetStatement.java --- a/src/main/java/nl/cwi/monetdb/jdbc/MonetStatement.java +++ b/src/main/java/nl/cwi/monetdb/jdbc/MonetStatement.java @@ -308,6 +308,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 } /**