private String prepareSqlStatement(DatabaseObject o) throws SQLException {
String originalSql = o.getName();
try {
SqlStatementParser parser = new SqlStatementParser(originalSql);
String processedSql = parser.insertNoneFilter();
logger.info("Original SQL: \"" + originalSql + "\" -- Filtered SQL: \"" + processedSql + "\"");
return processedSql;
} catch (Exception ex) {
throw new SQLException("Jitterbit could not create a test version of the following SQL statement: \"" +
originalSql + "\". This is a bug. Please report this to Jitterbit Support.");