Add 'Regulator' schema name to setup of database integration test of IRSDemoTest. (#427)

This commit is contained in:
szymonsztuka 2018-01-31 12:32:51 +00:00 committed by GitHub
parent 4d78d51663
commit 9f8536d010
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class IRSDemoTest : IntegrationTest() {
@ClassRule @JvmField
val databaseSchemas = IntegrationTestSchemas(DUMMY_BANK_A_NAME.toDatabaseSchemaName(), DUMMY_BANK_B_NAME.toDatabaseSchemaName(),
DUMMY_NOTARY_NAME.toDatabaseSchemaName())
DUMMY_NOTARY_NAME.toDatabaseSchemaName(), "Regulator")
}
private val rpcUsers = listOf(User("user", "password", setOf("ALL")))

View File

@ -29,4 +29,5 @@ CREATE LOGIN node_9 WITH PASSWORD = 'yourStrong(!)Password';
CREATE LOGIN RAFTNotaryService_0 WITH PASSWORD = 'yourStrong(!)Password';
CREATE LOGIN RAFTNotaryService_1 WITH PASSWORD = 'yourStrong(!)Password';
CREATE LOGIN RAFTNotaryService_2 WITH PASSWORD = 'yourStrong(!)Password';
CREATE LOGIN Regulator WITH PASSWORD = 'yourStrong(!)Password';
CREATE LOGIN RegulatorA WITH PASSWORD = 'yourStrong(!)Password';