@Override
 public void setMetadata(ResultSet result, ResultSetMetaData metadata) throws SQLException {
   super.setMetadata(result, metadata);
   // take care of the attributes
   for (Attribute attr : getDimensionIndex().getAttributes()) {
     SimpleMapping s = getMapping(attr.getId().getAttributeId());
     s.setMetadata(result, metadata);
   }
 }