public JDBCDataStoreFactory createDataStoreFactory() {
return new PostgisNGDataStoreFactory();
}
protected void runSqlInsertScript() throws Exception {
DatabaseUtil du = new DatabaseUtil();
ArrayList<String> sqls = du.splitPostgisSQLScript(script);
// run the script as a single shot, going back and forth line
// by line takes forever to run (more than a minute)
String pgScript = rebuildAsSingle(sqls);
this.run(pgScript);
this.setDataVersion(this.scriptVersion);