You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@madlib.apache.org by ok...@apache.org on 2020/04/03 17:06:37 UTC

[madlib] tag rel/v1.17.0 created (now 0100d31)

This is an automated email from the ASF dual-hosted git repository.

okislal pushed a change to tag rel/v1.17.0
in repository https://gitbox.apache.org/repos/asf/madlib.git.


      at 0100d31  (commit)
This tag includes the following new commits:

     new 1000db5  Add Semantic versioning
     new 0100d31  Add change list

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[madlib] 02/02: Add change list

Posted by ok...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

okislal pushed a commit to tag rel/v1.17.0
in repository https://gitbox.apache.org/repos/asf/madlib.git

commit 0100d31fb04a38deba830b9763d4dd552c891e3f
Author: Ekta Khanna <ek...@pivotal.io>
AuthorDate: Thu Jan 9 17:30:19 2020 -0800

    Add change list
---
 src/madpack/changelist_1.16_1.17.0.yaml | 220 ++++++++++++++++++++++++++++++++
 1 file changed, 220 insertions(+)

diff --git a/src/madpack/changelist_1.16_1.17.0.yaml b/src/madpack/changelist_1.16_1.17.0.yaml
new file mode 100644
index 0000000..0b73c59
--- /dev/null
+++ b/src/madpack/changelist_1.16_1.17.0.yaml
@@ -0,0 +1,220 @@
+# ------------------------------------------------------------------------------
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# ------------------------------------------------------------------------------
+
+# Changelist for MADlib version rel/v1.16 to rel/v1.17.0
+
+# This file contains all changes that were introduced in a new version of
+# MADlib. This changelist is used by the upgrade script to detect what objects
+# should be upgraded (while retaining all other objects from the previous version)
+
+# New modules (actually .sql_in files) added in upgrade version
+# For these files the sql_in code is retained as is with the functions in the
+# file installed on the upgrade version. All other files (that don't have
+# updates), are cleaned up to remove object replacements
+new module:
+    madlib_keras_fit_multiple_model:
+    madlib_keras_gpu_info:
+    madlib_keras_model_selection:
+
+# Changes in the types (UDT) including removal and modification
+udt:
+
+# List of the UDF changes that affect the user externally. This includes change
+# in function name, return type, argument order or types, or removal of
+# the function. In each case, the original function is as good as removed and a
+# new function is created. In such cases, we should abort the upgrade if there
+# are user views dependent on this function, since the original function will
+# not be present in the upgraded version.
+udf:
+    - fit_transition:
+        rettype: bytea
+        argument: bytea, smallint[], real[], text, text, text, integer, integer[], integer[], integer, integer, bytea
+    - gen_rules_from_cfp:
+        rettype: SETOF text[]
+        argument: text, integer
+    - internal_keras_eval_transition:
+        rettype: real[]
+        argument: real[], smallint[], real[], text, bytea, text, integer, integer[], integer[], integer, integer
+    - internal_keras_predict:
+        rettype: double precision[]
+        argument: real[], text, bytea, boolean, double precision, integer, integer[], integer[], integer, integer
+    - madlib_keras_evaluate:
+        rettype: void
+        argument: character varying, character varying, character varying, integer
+    - madlib_keras_fit:
+        rettype: void
+        argument: character varying, character varying, character varying, integer, character varying, character varying, integer, integer
+    - madlib_keras_fit:
+        rettype: void
+        argument: character varying, character varying, character varying, integer, character varying, character varying, integer, integer, character varying
+    - madlib_keras_fit:
+        rettype: void
+        argument: character varying, character varying, character varying, integer, character varying, character varying, integer, integer, character varying, integer
+    - madlib_keras_fit:
+        rettype: void
+        argument: character varying, character varying, character varying, integer, character varying, character varying, integer, integer, character varying, integer, boolean
+    - madlib_keras_fit:
+        rettype: void
+        argument: character varying, character varying, character varying, integer, character varying, character varying, integer, integer, character varying, integer, boolean, character varying
+    - madlib_keras_fit:
+        rettype: void
+        argument: character varying, character varying, character varying, integer, character varying, character varying, integer, integer, character varying, integer, boolean, character varying, character varying
+    - madlib_keras_predict:
+        rettype: void
+        argument: character varying, character varying, character varying, character varying, character varying, character varying, integer
+
+# Changes to aggregates (UDA) including removal and modification
+# Overloaded functions should be mentioned separately
+uda:
+    - agg_array_concat:
+        rettype: anyarray
+        argument: anyarray
+    - fit_step:
+        rettype: bytea
+        argument: smallint[], real[], text, text, text, integer, integer[], integer[], integer, integer, bytea
+    - internal_keras_evaluate:
+        rettype: real[]
+        argument: smallint[], real[], text, bytea, text, integer, integer[], integer[], integer, integer
+
+# List of the UDC, UDO and UDOC changes.
+udc:
+
+# Changes in the operators (UDO)
+udo:
+    - '%*%':
+        rightarg: double precision[]
+        leftarg: schema_madlib.svec
+        rettype: double precision
+    - '%*%':
+        rightarg: schema_madlib.svec
+        leftarg: schema_madlib.svec
+        rettype: double precision
+    - '%*%':
+        rightarg: schema_madlib.svec
+        leftarg: double precision[]
+        rettype: double precision
+    - '*':
+        rightarg: double precision[]
+        leftarg: schema_madlib.svec
+        rettype: schema_madlib.svec
+    - '*':
+        rightarg: schema_madlib.svec
+        leftarg: double precision[]
+        rettype: schema_madlib.svec
+    - '*':
+        rightarg: double precision[]
+        leftarg: double precision[]
+        rettype: schema_madlib.svec
+    - '*':
+        rightarg: schema_madlib.svec
+        leftarg: schema_madlib.svec
+        rettype: schema_madlib.svec
+    - '*||':
+        rightarg: schema_madlib.svec
+        leftarg: integer
+        rettype: schema_madlib.svec
+    - '+':
+        rightarg: double precision[]
+        leftarg: double precision[]
+        rettype: schema_madlib.svec
+    - '+':
+        rightarg: schema_madlib.svec
+        leftarg: schema_madlib.svec
+        rettype: schema_madlib.svec
+    - '+':
+        rightarg: schema_madlib.svec
+        leftarg: double precision[]
+        rettype: schema_madlib.svec
+    - '+':
+        rightarg: double precision[]
+        leftarg: schema_madlib.svec
+        rettype: schema_madlib.svec
+    - '-':
+        rightarg: schema_madlib.svec
+        leftarg: schema_madlib.svec
+        rettype: schema_madlib.svec
+    - '-':
+        rightarg: schema_madlib.svec
+        leftarg: double precision[]
+        rettype: schema_madlib.svec
+    - '-':
+        rightarg: double precision[]
+        leftarg: double precision[]
+        rettype: schema_madlib.svec
+    - '-':
+        rightarg: double precision[]
+        leftarg: schema_madlib.svec
+        rettype: schema_madlib.svec
+    - '/':
+        rightarg: double precision[]
+        leftarg: schema_madlib.svec
+        rettype: schema_madlib.svec
+    - '/':
+        rightarg: schema_madlib.svec
+        leftarg: double precision[]
+        rettype: schema_madlib.svec
+    - '/':
+        rightarg: schema_madlib.svec
+        leftarg: schema_madlib.svec
+        rettype: schema_madlib.svec
+    - '/':
+        rightarg: double precision[]
+        leftarg: double precision[]
+        rettype: schema_madlib.svec
+    - '<':
+        rightarg: schema_madlib.svec
+        leftarg: schema_madlib.svec
+        rettype: boolean
+    - '<=':
+        rightarg: schema_madlib.svec
+        leftarg: schema_madlib.svec
+        rettype: boolean
+    - '<>':
+        rightarg: schema_madlib.svec
+        leftarg: schema_madlib.svec
+        rettype: boolean
+    - '=':
+        rightarg: schema_madlib.svec
+        leftarg: schema_madlib.svec
+        rettype: boolean
+    - '==':
+        rightarg: schema_madlib.svec
+        leftarg: schema_madlib.svec
+        rettype: boolean
+    - '>':
+        rightarg: schema_madlib.svec
+        leftarg: schema_madlib.svec
+        rettype: boolean
+    - '>=':
+        rightarg: schema_madlib.svec
+        leftarg: schema_madlib.svec
+        rettype: boolean
+    - '^':
+        rightarg: schema_madlib.svec
+        leftarg: schema_madlib.svec
+        rettype: schema_madlib.svec
+    - '||':
+        rightarg: schema_madlib.svec
+        leftarg: schema_madlib.svec
+        rettype: schema_madlib.svec
+
+# Changes in the operator classes (UDOC)
+udoc:
+    - 'svec_ops':
+        index_method: btree


[madlib] 01/02: Add Semantic versioning

Posted by ok...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

okislal pushed a commit to tag rel/v1.17.0
in repository https://gitbox.apache.org/repos/asf/madlib.git

commit 1000db5c364cd970a6d05eedcb803a3f76921eab
Author: Ekta Khanna <ek...@pivotal.io>
AuthorDate: Thu Jan 9 12:07:09 2020 -0800

    Add Semantic versioning
---
 deploy/DEB/postinst    | 2 +-
 deploy/postflight.sh   | 2 +-
 pom.xml                | 2 +-
 src/config/Version.yml | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/deploy/DEB/postinst b/deploy/DEB/postinst
index 379cd2e..319dbf6 100755
--- a/deploy/DEB/postinst
+++ b/deploy/DEB/postinst
@@ -22,7 +22,7 @@
 # Source debconf library.
 . /usr/share/debconf/confmodule
 
-MADLIB_VERSION="1.17-dev"
+MADLIB_VERSION="1.17.0"
 MADLIB_INSTALL_PATH="InstallPathNotFound"
 
 # Fetching configuration from debconf
diff --git a/deploy/postflight.sh b/deploy/postflight.sh
index 206050b..d0e57a4 100755
--- a/deploy/postflight.sh
+++ b/deploy/postflight.sh
@@ -2,7 +2,7 @@
 
 # $0 - Script Path, $1 - Package Path, $2 - Target Location, and $3 - Target Volume
 
-MADLIB_VERSION=1.17-dev
+MADLIB_VERSION=1.17.0
 
 # Remove existing soft links
 find $2/usr/local/madlib/bin -depth -type l -exec rm {} \; 2>/dev/null
diff --git a/pom.xml b/pom.xml
index 5d43fbf..4d0eec1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
 
   <groupId>org.apache.madlib</groupId>
   <artifactId>madlib</artifactId>
-  <version>1.17-dev</version>
+  <version>1.17.0</version>
   <packaging>pom</packaging>
 
   <build>
diff --git a/src/config/Version.yml b/src/config/Version.yml
index 8aa372c..2ecd442 100644
--- a/src/config/Version.yml
+++ b/src/config/Version.yml
@@ -1 +1 @@
-version: 1.17-dev
+version: 1.17.0