*/
public class OutputFormatFactory {
@SuppressWarnings({ "unchecked", "rawtypes" })
public static OutputFormat<ITuple, NullWritable> getOutputFormat(SploutEngine engine, int batchSize, TableSpec[] tbls) throws Exception {
SploutSQLOutputFormat oF = null;
Class cl;
try {
cl = Class.forName(engine.getOutputFormatClass());
} catch(ClassNotFoundException e) {