File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
ebean-test/src/test/java/io/ebean/xtest/dbmigration Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 2121import java .util .ArrayList ;
2222import java .util .Collections ;
2323import java .util .List ;
24+ import java .util .Map ;
2425
2526import static org .assertj .core .api .Assertions .assertThat ;
2627
@@ -40,7 +41,7 @@ public class DbMigrationTest extends BaseTestCase {
4041 private void runScript (String scriptName ) {
4142 URL url = getClass ().getResource ("/migrationtest/dbmigration/" + server ().platform ().name ().toLowerCase () + "/" + scriptName );
4243 assert url != null : scriptName + " not found for platform [" + server ().platform ().name ().toLowerCase () + "]" ;
43- server ().script ().run (url );
44+ server ().script ().run (url , Map . of ( "reorgArgs" , "use tempspace1 resetdictionary" ) );
4445 }
4546
4647 @ IgnorePlatform ({
You can’t perform that action at this time.
0 commit comments