Minor Update
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@98866 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
b1d221faf3
commit
522c98a79d
|
@ -66,8 +66,13 @@ public class ColumnMap {
|
|||
for (UnionColumnsMapping umap : columnMatch) {
|
||||
sourceColumn = umap.getSourceColumn();
|
||||
targetColumn = umap.getTargetColumn();
|
||||
logger.debug("SourceColumn: " + sourceColumn);
|
||||
logger.debug("TargetColumn: " + targetColumn);
|
||||
//logger.debug("SourceColumn: " + sourceColumn);
|
||||
//logger.debug("TargetColumn: " + targetColumn);
|
||||
|
||||
//On service source and target are reversed
|
||||
logger.debug("On service sourceColumn and targetColumn are reversed");
|
||||
logger.debug("Service SourceColumn: " + targetColumn);
|
||||
logger.debug("Service TargetColumn: " + sourceColumn);
|
||||
|
||||
if (sourceColumn != null && targetColumn != null) {
|
||||
|
||||
|
@ -83,9 +88,9 @@ public class ColumnMap {
|
|||
|
||||
Map<String, Object> colMap = new HashMap<String, Object>();
|
||||
colMap.put(Constants.PARAMETER_UNION_COMPOSITE_SOURCE,
|
||||
sourceColumnRef);
|
||||
colMap.put(Constants.PARAMETER_UNION_COMPOSITE_TARGET,
|
||||
targetColumnRef);
|
||||
colMap.put(Constants.PARAMETER_UNION_COMPOSITE_TARGET,
|
||||
sourceColumnRef);
|
||||
composit.add(colMap);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue