diff ChangeLog @ 331:6ed8f5b1f9ed

Corrected method DatabaseMetaData.getBestRowIdentifier(). It used to return columns of both primary key and unique constraints. Now it only returns the columns of the primary key if it has one, else columns of a unique constraint.
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Wed, 18 Sep 2019 20:02:44 +0200 (2019-09-18)
parents 0fcf338ce0b4
children 55735963f605
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,12 @@
 # ChangeLog file for monetdb-java
 # This file is updated with Maddlog
 
+* Wed Sep 18 2019 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
+- Corrected method DatabaseMetaData.getBestRowIdentifier(). It used to
+  return columns of both primary key and unique constraints. Now it only
+  returns the columns of the primary key if it has one, else columns of
+  a unique constraint.
+
 * Wed Sep 11 2019 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
 - Optimized parse() method of TupleLineParser by creating less helper objects
   and replacing method calls by direct operations on variables.