taojintianxia commented on code in PR #20021: URL: https://github.com/apache/shardingsphere/pull/20021#discussion_r943085058
########## shardingsphere-test/shardingsphere-integration-test/shardingsphere-integration-test-env/src/test/java/org/apache/shardingsphere/test/integration/env/container/atomic/storage/DockerStorageContainer.java: ########## @@ -50,14 +50,17 @@ public abstract class DockerStorageContainer extends DockerITContainer implement @Getter(AccessLevel.NONE) private final String scenario; + private final String module; + private final Map<String, DataSource> actualDataSourceMap; private final Map<String, DataSource> expectedDataSourceMap; - public DockerStorageContainer(final DatabaseType databaseType, final String dockerImageName, final String scenario) { + public DockerStorageContainer(final DatabaseType databaseType, final String dockerImageName, final String scenario, final String module) { Review Comment: done ########## shardingsphere-test/shardingsphere-integration-test/shardingsphere-integration-test-env/src/test/java/org/apache/shardingsphere/test/integration/env/container/atomic/storage/DockerStorageContainer.java: ########## @@ -78,6 +78,26 @@ protected void configure() { : DataSourceEnvironment.getURL(databaseType, "localhost", getFirstMappedPort()), getUsername(), getUnifiedPassword()))); } + protected void setCommands(final String[] commands) { + if (commands.length > 0) { Review Comment: done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@shardingsphere.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org