if (ec > 0 && ec != '\\') {
throw new ImportException("Output escaped-by character must be '\\' "
+ "for netezza direct mode exports");
}
NetezzaExternalTableImportJob importer = null;
importer = new NetezzaExternalTableImportJob(options, context);
// Direct Netezza Manager will use the datasliceid so no split columns
// will be used.
LOG.info("Beginning netezza fast path import");
if (options.getFileLayout() != SqoopOptions.FileLayout.TextFile) {
LOG.warn("File import layout " + options.getFileLayout()
+ " is not supported by");
LOG.warn("Netezza direct import; import will proceed as text files.");
}
importer.runImport(tableName, jarFile, null, options.getConf());
}