You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemds.apache.org by ss...@apache.org on 2020/09/23 21:42:43 UTC

[systemds] branch master updated: [MINOR] fix in dropInvalidType

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

ssiddiqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git


The following commit(s) were added to refs/heads/master by this push:
     new f408100  [MINOR] fix in dropInvalidType
f408100 is described below

commit f4081004db1a22c2d06ee3d62ef76dc4a387c986
Author: Shafaq Siddiqi <sh...@tugraz.at>
AuthorDate: Wed Sep 23 23:42:35 2020 +0200

    [MINOR] fix in dropInvalidType
    
    Logical error fix, break is replaced with continue.
---
 src/main/java/org/apache/sysds/runtime/matrix/data/FrameBlock.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/sysds/runtime/matrix/data/FrameBlock.java b/src/main/java/org/apache/sysds/runtime/matrix/data/FrameBlock.java
index d5ee5a7..175d400 100644
--- a/src/main/java/org/apache/sysds/runtime/matrix/data/FrameBlock.java
+++ b/src/main/java/org/apache/sysds/runtime/matrix/data/FrameBlock.java
@@ -1996,7 +1996,7 @@ public class FrameBlock implements CacheBlock, Externalizable  {
 				type = "INT";
 			} else if (schemaCol.contains("STRING")){
 				// In case of String columns, don't do any verification or replacements.
-				break;
+				continue;
 			} else{
 				type = schemaCol;
 			}