comparison ChangeLog-Archive @ 230:60334b96df18

Updated ChangeLog and ChangeLog-Archive in preparation for new release of JDBC driver
author Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
date Thu, 17 May 2018 14:09:22 +0200 (2018-05-17)
parents 1834e6339279
children 55735963f605
comparison
equal deleted inserted replaced
226:5ea126405bac 230:60334b96df18
1 # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY 1 # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY
2 # This file contains past monetdb-java ChangeLog entries 2 # This file contains past monetdb-java ChangeLog entries
3
4 * Wed May 23 2018 Sjoerd Mullender <sjoerd@acm.org>
5 - Compiled and released new jars: monetdb-jdbc-2.28.jar, monetdb-mcl-1.17.jar
6 and updated jdbcclient.jar
7
8 * Thu Apr 26 2018 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
9 - Corrected and extended output of DatabaseMetaData methods
10 getTimeDateFunctions() and getSystemFunctions(). The Date/Time functions
11 (curdate, current_date, current_time, current_timestamp, curtime,
12 local_timezone, localtime, localtimestamp) were returned by
13 getSystemFunctions() but are now returned by getTimeDateFunctions().
14 getTimeDateFunctions() now also lists functions: date_to_str, extract, now,
15 str_to_date, str_to_time, str_to_timestamp, time_to_str and timestamp_to_str.
16 - Improved DatabaseMetaData methods getTablePrivileges() and
17 getColumnPrivileges() by returning also any combination of privileges
18 for the table or column in the PRIVILEGE result column. Previously only
19 single privileges (SELECT or UPDATE or INSERT or DELETE or EXECUTE or
20 GRANT) would be returned.
21
22 * Thu Apr 19 2018 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
23 - Corrected method DatabaseMetaData.getFunctions() for result column
24 FUNCTION_TYPE. It used to return DatabaseMetaData.functionResultUnknown
25 value for Analytic (functions.type 6) and Loader function (functions type 7).
26 It now returns DatabaseMetaData.functionNoTable for Analytic functions and
27 DatabaseMetaData.functionReturnsTable for Loader functions.
28 - DatabaseMetaData methods getTables(), getColumns(), getProcedures() and
29 getFunctions() now return the comment in the REMARKS result column when a
30 comment has been set for the table / view / column / procedure / function
31 via the SQL command COMMENT ON <db-object type> <qname> IS 'comment-text'.
32
33 * Thu Dec 14 2017 Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
34 - Fixed a problem with retrieving Dates and Timestamps which contained a
35 year value less than 1000. It would throw an SQLDataException with message:
36 Could not convert value to a Date. Expected JDBC date escape format
37 yyyy-[m]m-[d]d.
38 See also: https://www.monetdb.org/bugzilla/show_bug.cgi?id=6468
3 39
4 * Mon Oct 23 2017 Sjoerd Mullender <sjoerd@acm.org> 40 * Mon Oct 23 2017 Sjoerd Mullender <sjoerd@acm.org>
5 - Compiled and released new jars: monetdb-jdbc-2.27.jar, monetdb-mcl-1.16.jar 41 - Compiled and released new jars: monetdb-jdbc-2.27.jar, monetdb-mcl-1.16.jar
6 and updated jdbcclient.jar 42 and updated jdbcclient.jar
7 43