.append(cube == null ? null : cube.getName())
.append("\", operation not currently supported");
BATCH_LOGGER.error(buf.toString());
} else {
final AggGen aggGen =
new AggGen(cube.getName(), cube.getStar(), columns);
if (aggGen.isReady()) {
// PRINT TO STDOUT - DO NOT USE BATCH_LOGGER
System.out.println(
"createLost:" + Util.nl + aggGen.createLost());
System.out.println(
"insertIntoLost:" + Util.nl + aggGen.insertIntoLost());
System.out.println(
"createCollapsed:" + Util.nl
+ aggGen.createCollapsed());
System.out.println(
"insertIntoCollapsed:" + Util.nl
+ aggGen.insertIntoCollapsed());
} else {
BATCH_LOGGER.error("AggGen failed");
}
}
}