/**
* same as client2 but print the summaries separately (no grouping).
* This is obviously not terribly useful, the queries have got to
* have group specification -- -- unless we group up all of it.
*/
AggregateQuery query = queryClient.createQuery();
query.setCube(cubeName).addMeasure("impCnt").addMeasure("click");
query.addClosedSlice("dim1", ids[0], ids[1])/* .addGroupBy("dim1") */;
AggregateResultSet rs = query.execute();
closeables.addFirst(rs);