From f0cfe8a881928ceab149836d1d86c99e8ba3ef30 Mon Sep 17 00:00:00 2001 From: snoop Date: Thu, 23 Nov 2017 17:15:16 +0900 Subject: [PATCH] fixed Row logic bug --- .../com/loafle/overflow/crawler/result/OFResultSetCol.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/com/loafle/overflow/crawler/result/OFResultSetCol.java b/src/main/java/com/loafle/overflow/crawler/result/OFResultSetCol.java index 1131691..8629e57 100644 --- a/src/main/java/com/loafle/overflow/crawler/result/OFResultSetCol.java +++ b/src/main/java/com/loafle/overflow/crawler/result/OFResultSetCol.java @@ -30,6 +30,9 @@ public class OFResultSetCol extends OFResultSet{ if( arrayColumns != null) { for( int indexI = 0 ; indexI < arrayColumns.size(); ++indexI) { + if(this.meta.containsKey(arrayColumns.get(indexI))) { + continue; + } this.meta.put(arrayColumns.get(indexI), indexI+ meta.size()); } }