You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@madlib.apache.org by ri...@apache.org on 2017/12/18 23:30:52 UTC

[1/2] madlib git commit: APSP: Add newline at end of file

Repository: madlib
Updated Branches:
  refs/heads/master cefd15eac -> d0ad93d26


APSP: Add newline at end of file

JIRA: MADLIB-1191

PGXN install requires concatenating all SQL_IN files into one big
SQL file. In most cases, the last line of a SQL file is a single-line
comment and the first line is a multi-line comment.
One particular file (apsp.sql_in) did not have a newline at EOF,
leading to the single-line comment masking the start of the multi-line
comment of the next file. This eventually led to an invalid concatenated
SQL file.

Lesson of the day: Always add newline at end of file


Project: http://git-wip-us.apache.org/repos/asf/madlib/repo
Commit: http://git-wip-us.apache.org/repos/asf/madlib/commit/4a5dbe12
Tree: http://git-wip-us.apache.org/repos/asf/madlib/tree/4a5dbe12
Diff: http://git-wip-us.apache.org/repos/asf/madlib/diff/4a5dbe12

Branch: refs/heads/master
Commit: 4a5dbe124071e7da9a1b1a48b7a6000cd6d34c53
Parents: cefd15e
Author: Rahul Iyer <ri...@apache.org>
Authored: Mon Dec 18 15:24:14 2017 -0800
Committer: Rahul Iyer <ri...@apache.org>
Committed: Mon Dec 18 15:24:14 2017 -0800

----------------------------------------------------------------------
 src/ports/postgres/modules/graph/apsp.sql_in | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/madlib/blob/4a5dbe12/src/ports/postgres/modules/graph/apsp.sql_in
----------------------------------------------------------------------
diff --git a/src/ports/postgres/modules/graph/apsp.sql_in b/src/ports/postgres/modules/graph/apsp.sql_in
index 637afdf..c7bf210 100644
--- a/src/ports/postgres/modules/graph/apsp.sql_in
+++ b/src/ports/postgres/modules/graph/apsp.sql_in
@@ -48,11 +48,11 @@ weights of the path edges is minimized.
 
 @warning APSP is an expensive algorithm for run-time
 because it finds the shortest path between all nodes
-in the graph.  It is recommended that you start with a 
-small graph to get a sense of run-time for your use case, 
-then increase size carefully from there.  The worst case run-time 
-for this implementation is O(V^2 * E) where V is the 
-number of vertices and E is the number of edges.  In 
+in the graph.  It is recommended that you start with a
+small graph to get a sense of run-time for your use case,
+then increase size carefully from there.  The worst case run-time
+for this implementation is O(V^2 * E) where V is the
+number of vertices and E is the number of edges.  In
 practice, run-time will be generally be
 much less than this, but it depends on the graph.
 
@@ -435,4 +435,4 @@ RETURNS VARCHAR AS $$
     SELECT MADLIB_SCHEMA.graph_apsp('');
 $$ LANGUAGE sql IMMUTABLE
 m4_ifdef(`\_\_HAS_FUNCTION_PROPERTIES\_\_', `CONTAINS SQL', `');
---------------------------------------------------------------------------------
\ No newline at end of file
+--------------------------------------------------------------------------------


[2/2] madlib git commit: Release: Update RELEASE_NOTES for v1.13

Posted by ri...@apache.org.
Release: Update RELEASE_NOTES for v1.13

JIRA: MADLIB-1189


Project: http://git-wip-us.apache.org/repos/asf/madlib/repo
Commit: http://git-wip-us.apache.org/repos/asf/madlib/commit/d0ad93d2
Tree: http://git-wip-us.apache.org/repos/asf/madlib/tree/d0ad93d2
Diff: http://git-wip-us.apache.org/repos/asf/madlib/diff/d0ad93d2

Branch: refs/heads/master
Commit: d0ad93d261337661e40312caa9168eb9d6dc761f
Parents: 4a5dbe1
Author: Rahul Iyer <ri...@apache.org>
Authored: Sun Dec 17 23:36:34 2017 -0800
Committer: Rahul Iyer <ri...@apache.org>
Committed: Mon Dec 18 15:30:23 2017 -0800

----------------------------------------------------------------------
 RELEASE_NOTES | 25 +++++++++++++++++++++++--
 1 file changed, 23 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/madlib/blob/d0ad93d2/RELEASE_NOTES
----------------------------------------------------------------------
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index 5bd7820..eed2a08 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -11,9 +11,30 @@ Current list of bugs and issues can be found at https://issues.apache.org/jira/b
 —-------------------------------------------------------------------------
 MADlib v1.13:
 
-Release Date: TBD
+Release Date: 2017-December-22
 
-* Updated PyXB from 1.2.4 to 1.2.6.
+New features:
+* New module: Graph - HITS (MADLIB-1124, MADLIB-1151)
+* k-NN:
+    - Added additional distance metrics (MADLIB-1059)
+    - Added list of neighbors in output table (MADLIB-1129)
+* MLP: Added grouping support (MADLIB-1149)
+* Cross Validation: Improved the stats reporting in output table (MADLIB-1169)
+* Correlation: Improved quality of results by ignoring only a NULL value and
+    not the whole row containing the NULL (MADLIB-1166)
+
+Bug fixes:
+    - Fixed issue with Decision Trees (DT) trained in older versions not
+        being usable in predict of v1.12 (MADLIB-1161)
+    - Fixed invalid assert statement in DT (MADLIB-1164)
+    - Improved feature array handling in DT (MADLIB-1173)
+    - Fixed install-check failures on non-default schema installation (MADLIB-1177, 1184)
+
+Other:
+    - Updated PyXB from 1.2.4 to 1.2.6. (MADLIB-1103)
+        This change eliminates the need to remove part of PyXB codebase as a
+        GPL-workaround.
+    - Updated the naming for gppkg (MADLIB-1183)
 
 —-------------------------------------------------------------------------
 MADlib v1.12: