Reused statement invalidated
Fixed and committed to SVN (revision 6840)
core code updates - minor code reformat
core code updates - fix for bug #1740
NPE in Session.executeCompiledBatchStatement with "insert on duplicate key update" statements
I cannot reproduce this. Please post a modified version of the working code below to cause the NPE. Connection connection = newConnection(); Statement statement = connection.createStatement(); statement.execute("SET DATABASE SQL SYNTAX MYS TRUE"); statement.execute("DROP TABLE test3 IF EXISTS"); statement.execute("CREATE TABLE test3 (id INT GENERATED BY DEFAULT AS IDENTITY, data BIGINT)"); PreparedStatement preparedStatement = connection.prepareStatement("INSERT INTO test3 (id, data) VALUES (?, ?)...
DatabaseMetaData.getTablePrivileges dont follow JDBC
DatabaseMetaData.getColumns() returns non-null SOURCE_DATA_TYPE for non-DISTINCT/non-REF columns