resultsetcol
This commit is contained in:
snoop 2017-04-26 12:06:01 +09:00
parent a647c230e1
commit 5a1f1293ff

View File

@ -18,7 +18,7 @@ public class OFResultSetCol extends OFResultSet{
public void setMeta() {
List<Keys> meta = this.item.getKeys();
List<String> arrayColumns = (List<String>)this.item.getMappingInfo().getArrayColumns();
List<String> arrayColumns = this.item.getMappingInfo().getArrayColumns();
if(this.meta == null) {
this.meta = new HashMap<>();
@ -41,8 +41,7 @@ public class OFResultSetCol extends OFResultSet{
public Map<String, String> parse() {
List<Keys> metrics = this.item.getKeys();
List<String> arrayColumns = (List<String>)this.item.getMappingInfo().getArrayColumns();
// this.meta
List<String> arrayColumns = this.item.getMappingInfo().getArrayColumns();
Map<String, String> resultMap = new HashMap<>();