Skip to content

Commit

Permalink
bugfix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
d-bernat committed Dec 23, 2024
1 parent 5bcf118 commit 092ab3e
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1027,8 +1027,11 @@ private Map<String, Object> getKeyValueMap(DataQueryParams params, String sql, i
} else // NUMERIC
{
Double value = rowSet.getDouble(VALUE_ID);

map.put(key.toString() + counter, value);
if (params.hasOptionSetInDimensionItems()) {
map.put(key.toString() + counter, value);
} else {
map.put(key.toString(), value);
}
}
}

Expand Down

0 comments on commit 092ab3e

Please sign in to comment.