Changeset: c8b06c670a63 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=c8b06c670a63
Modified Files:
MonetDB.spec
debian/changelog
java/ChangeLog-Archive
java/ChangeLog.Jun2016
Branch: Jun2016
Log Message:
Moved contents of ChangeLog.Jun2016 to MonetDB.spec, debian/changelog and
ChangeLog-Archive.
diffs (170 lines):
diff --git a/MonetDB.spec b/MonetDB.spec
--- a/MonetDB.spec
+++ b/MonetDB.spec
@@ -1012,6 +1012,44 @@ rm -f %{buildroot}%{_bindir}/Maddlog
%postun -p /sbin/ldconfig
%changelog
+* Wed Jul 13 2016 Sjoerd Mullender <[email protected]> - 11.23.7-20160713
+- Rebuilt.
+- BZ#4014: KILL signal
+- BZ#4021: Analyze query does not escape input [security]
+- BZ#4026: JDBC driver incorrectly converts TINYINT fields to String
+ instead of an integer type.
+- BZ#4028: inputs not the same size
+- BZ#4032: no decimal places after update. ODBC driver
+- BZ#4035: SQL Function call bug
+- BZ#4036: Possible sql_catalog corruption due to unclean backuped tail
+
+* Thu Jul 7 2016 Martin van Dinther <[email protected]>
- 11.23.7-20160713
+- java: Corrected PROCEDURE_TYPE output value of method
DatabaseMetaData.getProcedures().
+ It used to return procedureReturnsResult. Now it returns procedureNoResult.
+ Corrected ORDINAL_POSITION output value of method
DatabaseMetaData.getProcedureColumns().
+ It used to start with 0, but as procedures do not return a result value it
now
+ starts with 1 for all the procedure arguments, as defined by the JDBC API.
+- java: Improved output of method DatabaseMetaData.getProcedures(). The REMARKS
+ column now contains the procedure definition as stored in sys.functions.func.
+ The SPECIFIC_NAME column now contains the procedure unique identifier as
+ stored in sys.functions.id. This allows the caller to retrieve the specific
+ overloaded procedure which has the same name, but different arguments.
+ Also improved output of method DatabaseMetaData.getProcedureColumns().
+ The SPECIFIC_NAME column now contains the procedure unique identifier as
+ stored in sys.functions.id. This allows the caller to retrieve the proper
+ arguments of the specific overloaded procedure by matching the SPECIFIC_NAME
+ value.
+- java: Improved output of method DatabaseMetaData.getFunctions(). The REMARKS
+ column now contains the function definition as stored in sys.functions.func.
+ The SPECIFIC_NAME column now contains the function unique identifier as
+ stored in sys.functions.id. This allows the caller to retrieve the specific
+ overloaded function which has the same name, but different arguments.
+ Also improved output of method DatabaseMetaData.getFunctionColumns().
+ The SPECIFIC_NAME column now contains the function unique identifier as
+ stored in sys.functions.id. This allows the caller to retrieve the proper
+ arguments of the specific overloaded function by matching the SPECIFIC_NAME
+ value.
+
* Mon Jul 04 2016 Sjoerd Mullender <[email protected]> - 11.23.5-20160704
- Rebuilt.
- BZ#4031: mclient doesn't accept - argument to refer to stdin
diff --git a/debian/changelog b/debian/changelog
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,47 @@
+monetdb (11.23.7) unstable; urgency=low
+
+ * Rebuilt.
+ * BZ#4014: KILL signal
+ * BZ#4021: Analyze query does not escape input [security]
+ * BZ#4026: JDBC driver incorrectly converts TINYINT fields to String
+ instead of an integer type.
+ * BZ#4028: inputs not the same size
+ * BZ#4032: no decimal places after update. ODBC driver
+ * BZ#4035: SQL Function call bug
+ * BZ#4036: Possible sql_catalog corruption due to unclean backuped tail
+
+ -- Sjoerd Mullender <[email protected]> Wed, 13 Jul 2016 14:33:03 +0200
+
+monetdb (11.23.7) unstable; urgency=low
+
+ * java: Corrected PROCEDURE_TYPE output value of method
DatabaseMetaData.getProcedures().
+ It used to return procedureReturnsResult. Now it returns procedureNoResult.
+ Corrected ORDINAL_POSITION output value of method
DatabaseMetaData.getProcedureColumns().
+ It used to start with 0, but as procedures do not return a result value it
now
+ starts with 1 for all the procedure arguments, as defined by the JDBC API.
+ * java: Improved output of method DatabaseMetaData.getProcedures(). The
REMARKS
+ column now contains the procedure definition as stored in
sys.functions.func.
+ The SPECIFIC_NAME column now contains the procedure unique identifier as
+ stored in sys.functions.id. This allows the caller to retrieve the specific
+ overloaded procedure which has the same name, but different arguments.
+ Also improved output of method DatabaseMetaData.getProcedureColumns().
+ The SPECIFIC_NAME column now contains the procedure unique identifier as
+ stored in sys.functions.id. This allows the caller to retrieve the proper
+ arguments of the specific overloaded procedure by matching the
SPECIFIC_NAME
+ value.
+ * java: Improved output of method DatabaseMetaData.getFunctions(). The
REMARKS
+ column now contains the function definition as stored in
sys.functions.func.
+ The SPECIFIC_NAME column now contains the function unique identifier as
+ stored in sys.functions.id. This allows the caller to retrieve the specific
+ overloaded function which has the same name, but different arguments.
+ Also improved output of method DatabaseMetaData.getFunctionColumns().
+ The SPECIFIC_NAME column now contains the function unique identifier as
+ stored in sys.functions.id. This allows the caller to retrieve the proper
+ arguments of the specific overloaded function by matching the SPECIFIC_NAME
+ value.
+
+ -- Martin van Dinther <[email protected]> Thu, 7 Jul
2016 14:33:03 +0200
+
monetdb (11.23.5) unstable; urgency=low
* Rebuilt.
diff --git a/java/ChangeLog-Archive b/java/ChangeLog-Archive
--- a/java/ChangeLog-Archive
+++ b/java/ChangeLog-Archive
@@ -1,6 +1,33 @@
# DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY
# This file contains past ChangeLog entries
+* Thu Jul 7 2016 Martin van Dinther <[email protected]>
- 11.23.7-20160713
+- Corrected PROCEDURE_TYPE output value of method
DatabaseMetaData.getProcedures().
+ It used to return procedureReturnsResult. Now it returns procedureNoResult.
+ Corrected ORDINAL_POSITION output value of method
DatabaseMetaData.getProcedureColumns().
+ It used to start with 0, but as procedures do not return a result value it
now
+ starts with 1 for all the procedure arguments, as defined by the JDBC API.
+- Improved output of method DatabaseMetaData.getProcedures(). The REMARKS
+ column now contains the procedure definition as stored in sys.functions.func.
+ The SPECIFIC_NAME column now contains the procedure unique identifier as
+ stored in sys.functions.id. This allows the caller to retrieve the specific
+ overloaded procedure which has the same name, but different arguments.
+ Also improved output of method DatabaseMetaData.getProcedureColumns().
+ The SPECIFIC_NAME column now contains the procedure unique identifier as
+ stored in sys.functions.id. This allows the caller to retrieve the proper
+ arguments of the specific overloaded procedure by matching the SPECIFIC_NAME
+ value.
+- Improved output of method DatabaseMetaData.getFunctions(). The REMARKS
+ column now contains the function definition as stored in sys.functions.func.
+ The SPECIFIC_NAME column now contains the function unique identifier as
+ stored in sys.functions.id. This allows the caller to retrieve the specific
+ overloaded function which has the same name, but different arguments.
+ Also improved output of method DatabaseMetaData.getFunctionColumns().
+ The SPECIFIC_NAME column now contains the function unique identifier as
+ stored in sys.functions.id. This allows the caller to retrieve the proper
+ arguments of the specific overloaded function by matching the SPECIFIC_NAME
+ value.
+
* Thu May 26 2016 Martin van Dinther <[email protected]>
- 11.23.1-20160601
- Fixed problem in DatabaseMetaData.getUDTs() when it was called with
types parameter filled. It used to throw SQException with message:
diff --git a/java/ChangeLog.Jun2016 b/java/ChangeLog.Jun2016
--- a/java/ChangeLog.Jun2016
+++ b/java/ChangeLog.Jun2016
@@ -1,30 +1,3 @@
# ChangeLog file for java
# This file is updated with Maddlog
-* Thu Jul 7 2016 Martin van Dinther <[email protected]>
-- Corrected PROCEDURE_TYPE output value of method
DatabaseMetaData.getProcedures().
- It used to return procedureReturnsResult. Now it returns procedureNoResult.
- Corrected ORDINAL_POSITION output value of method
DatabaseMetaData.getProcedureColumns().
- It used to start with 0, but as procedures do not return a result value it
now
- starts with 1 for all the procedure arguments, as defined by the JDBC API.
-- Improved output of method DatabaseMetaData.getProcedures(). The REMARKS
- column now contains the procedure definition as stored in sys.functions.func.
- The SPECIFIC_NAME column now contains the procedure unique identifier as
- stored in sys.functions.id. This allows the caller to retrieve the specific
- overloaded procedure which has the same name, but different arguments.
- Also improved output of method DatabaseMetaData.getProcedureColumns().
- The SPECIFIC_NAME column now contains the procedure unique identifier as
- stored in sys.functions.id. This allows the caller to retrieve the proper
- arguments of the specific overloaded procedure by matching the SPECIFIC_NAME
- value.
-- Improved output of method DatabaseMetaData.getFunctions(). The REMARKS
- column now contains the function definition as stored in sys.functions.func.
- The SPECIFIC_NAME column now contains the function unique identifier as
- stored in sys.functions.id. This allows the caller to retrieve the specific
- overloaded function which has the same name, but different arguments.
- Also improved output of method DatabaseMetaData.getFunctionColumns().
- The SPECIFIC_NAME column now contains the function unique identifier as
- stored in sys.functions.id. This allows the caller to retrieve the proper
- arguments of the specific overloaded function by matching the SPECIFIC_NAME
- value.
-
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list