fixed Row logic bug
This commit is contained in:
parent
a4928ba964
commit
f0cfe8a881
|
@ -30,6 +30,9 @@ public class OFResultSetCol extends OFResultSet{
|
||||||
|
|
||||||
if( arrayColumns != null) {
|
if( arrayColumns != null) {
|
||||||
for( int indexI = 0 ; indexI < arrayColumns.size(); ++indexI) {
|
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());
|
this.meta.put(arrayColumns.get(indexI), indexI+ meta.size());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user