branch develop updated (f942af0 -> 1b49a13)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git from f942af0 [LL] Problème de copie de marée avec des pièces-jointes (Fixes #8670) new 1b49a13 Deal with null blobs The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 1b49a130c74abf33a8861c5305a14725bd141168 Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Oct 19 18:26:00 2016 +0200 Deal with null blobs Summary of changes: .../nuiton/topia/service/sql/batch/actions/ReplicateTablesAction.java | 4 ++++ 1 file changed, 4 insertions(+) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git commit 1b49a130c74abf33a8861c5305a14725bd141168 Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Oct 19 18:26:00 2016 +0200 Deal with null blobs --- .../nuiton/topia/service/sql/batch/actions/ReplicateTablesAction.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/topia-extension/src/main/java/org/nuiton/topia/service/sql/batch/actions/ReplicateTablesAction.java b/topia-extension/src/main/java/org/nuiton/topia/service/sql/batch/actions/ReplicateTablesAction.java index 3e8df88..8871299 100644 --- a/topia-extension/src/main/java/org/nuiton/topia/service/sql/batch/actions/ReplicateTablesAction.java +++ b/topia-extension/src/main/java/org/nuiton/topia/service/sql/batch/actions/ReplicateTablesAction.java @@ -200,6 +200,10 @@ public class ReplicateTablesAction extends AbstractTablesAction<ReplicateTablesR if (columnName.equals(blobColumn)) { + if (columnValue == null) { + continue; + } + InputStream stream; int size; if (columnValue instanceof Long) { -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm