Changeset: e3d0eecdc35d for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=e3d0eecdc35d Modified Files: MonetDB.spec clients/ChangeLog-Archive clients/ChangeLog.Oct2014 debian/changelog sql/ChangeLog-Archive sql/ChangeLog.Oct2014 Branch: Oct2014 Log Message:
Moved contents of ChangeLog.Oct2014 to MonetDB.spec, debian/changelog and ChangeLog-Archive. diffs (255 lines): diff --git a/MonetDB.spec b/MonetDB.spec --- a/MonetDB.spec +++ b/MonetDB.spec @@ -91,7 +91,7 @@ Vendor: MonetDB BV <[email protected]> Group: Applications/Databases License: MPL - http://www.monetdb.org/Legal/MonetDBLicense URL: http://www.monetdb.org/ -Source: http://dev.monetdb.org/downloads/sources/Oct2014-SP1/%{name}-%{version}.tar.bz2 +Source: http://dev.monetdb.org/downloads/sources/Oct2014-SP2/%{name}-%{version}.tar.bz2 BuildRequires: bison BuildRequires: bzip2-devel @@ -960,6 +960,68 @@ mv $RPM_BUILD_ROOT%{_datadir}/doc/MonetD rm -fr $RPM_BUILD_ROOT %changelog +* Fri Jan 23 2015 Sjoerd Mullender <[email protected]> - 11.19.9-20150123 +- Rebuilt. +- BZ#3467: Field aliases with '#' character excise field names in + result set. +- BZ#3605: relational query without result +- BZ#3619: Missing dll on MonetDB Start +- BZ#3622: Type resolution error +- BZ#3624: insert of incomplete or invalid ip address values in + inet column is silently accepted but the values are not stored (they + become/show nil) +- BZ#3626: casting a type without alias results in program contains errors +- BZ#3628: mclient and ODBC driver report 'type mismatch' when stddev_pop + used in a select which returns 0 rows +- BZ#3629: IF THEN ELSEIF always evaluates the first test as true +- BZ#3630: segv on rel_order_by_column_exp +- BZ#3632: running make clean twice gives an error in clients/ruby/adapter +- BZ#3633: Wrong result for HAVING with floating-point constant +- BZ#3640: Missing implementation of scalar function: sql_sub(<date>, + <month interval>) +- BZ#3641: SQL lexer fails to detect string end if it the last character + is U+FEFF ZERO WIDTH NO-BREAK SPACE +- BZ#3642: Combined WHERE conditions less-than plus equals-to produce + incorrect results +- BZ#3643: Missing implementations of scalar function: sql_sub(<timetz>, + arg2) +- BZ#3644: COPY INTO fails to import "inet" data type when value has + prefix length in CIDR notation +- BZ#3646: ORDER BY clause does not produce proper results on 'inet' + datatype +- BZ#3649: recycler crashes with concurrent transactions + +* Mon Jan 19 2015 Sjoerd Mullender <[email protected]> - 11.19.9-20150123 +- sql: Fixed a typo in a column name of the sys.tablestoragemodel view + (auxillary changed to auxiliary). + +* Tue Jan 13 2015 Sjoerd Mullender <[email protected]> - 11.19.9-20150123 +- clients: Changes to the Perl interface, thanks to Stefan O'Rear: + 1. removes "use sigtrap", because this has global effects and should + not be used by modules, only by the application. + 2. allows Perl 5.8.1+ Unicode strings to be passed to quote() and + included in statements (UTF-8 encoded, as expected by Monet's str + module) + 3. quote and unquote now use the same quoting rules as the MonetDB + server, allowing for all characters except NUL to be round-tripped + 4. several character loops have been reimplemented in regex for much + greater performance + 5. micro-optimizations to the result fetch loop + 6. block boundaries are preserved in piggyback data so that Xclose is + not appended or prepended to a SQL command + 7. diagnostic messages #foo before a result header are ignored, this + is necessary to use recycler_pipe + 8. fail quickly and loudly if we receive a continuation prompt (or any + other response that starts with a non-ASCII character) + 9. header lines must start with %, not merely contain %, fixing a bug + when querying a table where string values contain % + 10. after closing a large resultset, account for the fact that a reply + will come and do not lose sync + 11. allow a MAPI_TRACE environment variable to dump wire protocol + frames to standard output + 12. fixes maximum MAPI block size to match the server limit of 16k. + previously would crash on blocks larger than 16k + * Fri Nov 21 2014 Sjoerd Mullender <[email protected]> - 11.19.7-20141121 - Rebuilt. diff --git a/clients/ChangeLog-Archive b/clients/ChangeLog-Archive --- a/clients/ChangeLog-Archive +++ b/clients/ChangeLog-Archive @@ -1,6 +1,33 @@ # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY # This file contains past ChangeLog entries +* Tue Jan 13 2015 Sjoerd Mullender <[email protected]> - 11.19.9-20150123 +- Changes to the Perl interface, thanks to Stefan O'Rear: + 1. removes "use sigtrap", because this has global effects and should + not be used by modules, only by the application. + 2. allows Perl 5.8.1+ Unicode strings to be passed to quote() and + included in statements (UTF-8 encoded, as expected by Monet's str + module) + 3. quote and unquote now use the same quoting rules as the MonetDB + server, allowing for all characters except NUL to be round-tripped + 4. several character loops have been reimplemented in regex for much + greater performance + 5. micro-optimizations to the result fetch loop + 6. block boundaries are preserved in piggyback data so that Xclose is + not appended or prepended to a SQL command + 7. diagnostic messages #foo before a result header are ignored, this + is necessary to use recycler_pipe + 8. fail quickly and loudly if we receive a continuation prompt (or any + other response that starts with a non-ASCII character) + 9. header lines must start with %, not merely contain %, fixing a bug + when querying a table where string values contain % + 10. after closing a large resultset, account for the fact that a reply + will come and do not lose sync + 11. allow a MAPI_TRACE environment variable to dump wire protocol + frames to standard output + 12. fixes maximum MAPI block size to match the server limit of 16k. + previously would crash on blocks larger than 16k + * Tue Apr 1 2014 Sjoerd Mullender <[email protected]> - 11.17.15-20140508 - ODBC: Implemented {call procedure-name(...)} escape. The version {?=call ...} is not implemented. diff --git a/clients/ChangeLog.Oct2014 b/clients/ChangeLog.Oct2014 --- a/clients/ChangeLog.Oct2014 +++ b/clients/ChangeLog.Oct2014 @@ -1,30 +1,3 @@ # ChangeLog file for clients # This file is updated with Maddlog -* Tue Jan 13 2015 Sjoerd Mullender <[email protected]> -- Changes to the Perl interface, thanks to Stefan O'Rear: - 1. removes "use sigtrap", because this has global effects and should - not be used by modules, only by the application. - 2. allows Perl 5.8.1+ Unicode strings to be passed to quote() and - included in statements (UTF-8 encoded, as expected by Monet's str - module) - 3. quote and unquote now use the same quoting rules as the MonetDB - server, allowing for all characters except NUL to be round-tripped - 4. several character loops have been reimplemented in regex for much - greater performance - 5. micro-optimizations to the result fetch loop - 6. block boundaries are preserved in piggyback data so that Xclose is - not appended or prepended to a SQL command - 7. diagnostic messages #foo before a result header are ignored, this - is necessary to use recycler_pipe - 8. fail quickly and loudly if we receive a continuation prompt (or any - other response that starts with a non-ASCII character) - 9. header lines must start with %, not merely contain %, fixing a bug - when querying a table where string values contain % - 10. after closing a large resultset, account for the fact that a reply - will come and do not lose sync - 11. allow a MAPI_TRACE environment variable to dump wire protocol - frames to standard output - 12. fixes maximum MAPI block size to match the server limit of 16k. - previously would crash on blocks larger than 16k - diff --git a/debian/changelog b/debian/changelog --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,74 @@ +monetdb (11.19.9-20150123) unstable; urgency=low + + * Rebuilt. + * BZ#3467: Field aliases with '#' character excise field names in + result set. + * BZ#3605: relational query without result + * BZ#3619: Missing dll on MonetDB Start + * BZ#3622: Type resolution error + * BZ#3624: insert of incomplete or invalid ip address values in + inet column is silently accepted but the values are not stored (they + become/show nil) + * BZ#3626: casting a type without alias results in program contains errors + * BZ#3628: mclient and ODBC driver report 'type mismatch' when stddev_pop + used in a select which returns 0 rows + * BZ#3629: IF THEN ELSEIF always evaluates the first test as true + * BZ#3630: segv on rel_order_by_column_exp + * BZ#3632: running make clean twice gives an error in clients/ruby/adapter + * BZ#3633: Wrong result for HAVING with floating-point constant + * BZ#3640: Missing implementation of scalar function: sql_sub(<date>, + <month interval>) + * BZ#3641: SQL lexer fails to detect string end if it the last character + is U+FEFF ZERO WIDTH NO-BREAK SPACE + * BZ#3642: Combined WHERE conditions less-than plus equals-to produce + incorrect results + * BZ#3643: Missing implementations of scalar function: sql_sub(<timetz>, + arg2) + * BZ#3644: COPY INTO fails to import "inet" data type when value has + prefix length in CIDR notation + * BZ#3646: ORDER BY clause does not produce proper results on 'inet' + datatype + * BZ#3649: recycler crashes with concurrent transactions + + -- Sjoerd Mullender <[email protected]> Fri, 23 Jan 2015 13:21:50 +0100 + +monetdb (11.19.9-20150123) unstable; urgency=low + + * sql: Fixed a typo in a column name of the sys.tablestoragemodel view + (auxillary changed to auxiliary). + + -- Sjoerd Mullender <[email protected]> Mon, 19 Jan 2015 13:21:50 +0100 + +monetdb (11.19.9-20150123) unstable; urgency=low + + * clients: Changes to the Perl interface, thanks to Stefan O'Rear: + 1. removes "use sigtrap", because this has global effects and should + not be used by modules, only by the application. + 2. allows Perl 5.8.1+ Unicode strings to be passed to quote() and + included in statements (UTF-8 encoded, as expected by Monet's str + module) + 3. quote and unquote now use the same quoting rules as the MonetDB + server, allowing for all characters except NUL to be round-tripped + 4. several character loops have been reimplemented in regex for much + greater performance + 5. micro-optimizations to the result fetch loop + 6. block boundaries are preserved in piggyback data so that Xclose is + not appended or prepended to a SQL command + 7. diagnostic messages #foo before a result header are ignored, this + is necessary to use recycler_pipe + 8. fail quickly and loudly if we receive a continuation prompt (or any + other response that starts with a non-ASCII character) + 9. header lines must start with %, not merely contain %, fixing a bug + when querying a table where string values contain % + 10. after closing a large resultset, account for the fact that a reply + will come and do not lose sync + 11. allow a MAPI_TRACE environment variable to dump wire protocol + frames to standard output + 12. fixes maximum MAPI block size to match the server limit of 16k. + previously would crash on blocks larger than 16k + + -- Sjoerd Mullender <[email protected]> Tue, 13 Jan 2015 13:21:50 +0100 + monetdb (11.19.7-20141121) unstable; urgency=low * Rebuilt. diff --git a/sql/ChangeLog-Archive b/sql/ChangeLog-Archive --- a/sql/ChangeLog-Archive +++ b/sql/ChangeLog-Archive @@ -1,6 +1,10 @@ # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY # This file contains past ChangeLog entries +* Mon Jan 19 2015 Sjoerd Mullender <[email protected]> - 11.19.9-20150123 +- Fixed a typo in a column name of the sys.tablestoragemodel view + (auxillary changed to auxiliary). + * Thu Nov 20 2014 Sjoerd Mullender <[email protected]> - 11.19.5-20141120 - Fixed sys.queue() implementation to report on other queries being executed. diff --git a/sql/ChangeLog.Oct2014 b/sql/ChangeLog.Oct2014 --- a/sql/ChangeLog.Oct2014 +++ b/sql/ChangeLog.Oct2014 @@ -1,7 +1,3 @@ # ChangeLog file for sql # This file is updated with Maddlog -* Mon Jan 19 2015 Sjoerd Mullender <[email protected]> -- Fixed a typo in a column name of the sys.tablestoragemodel view - (auxillary changed to auxiliary). - _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
