Skip to content

Commit

Permalink
don't validate. otherwise fk will fail
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed May 1, 2012
1 parent 509c9e7 commit 54969ee
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -586,7 +586,7 @@ protected boolean create(CsvData data) {
xml = data.getParsedData(CsvData.ROW_DATA)[0];
log.info("About to create table using the following definition: ", xml);
StringReader reader = new StringReader(xml);
Database db = (Database) new DatabaseIO().read(reader);
Database db = (Database) new DatabaseIO().read(reader, false);
platform.alterTables(false, db.getTables());
platform.resetCachedTableModel();
statistics.get(batch).increment(DataWriterStatisticConstants.CREATECOUNT);
Expand Down

0 comments on commit 54969ee

Please sign in to comment.