Skip to content

Commit 387fa88

Browse files
Add COLLATION=en_US;
1 parent 99211d8 commit 387fa88

11 files changed

Lines changed: 25 additions & 25 deletions

File tree

modules/distribution/src/repository/resources/conf/deployment.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ type = "database_unique_id"
1313

1414
[database.identity_db]
1515
type = "h2"
16-
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
16+
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
1717
username = "wso2carbon"
1818
password = "wso2carbon"
1919

2020
[database.shared_db]
2121
type = "h2"
22-
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
22+
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
2323
username = "wso2carbon"
2424
password = "wso2carbon"
2525

2626
[datasource.AgentIdentity]
2727
id = "AgentIdentity"
28-
url = "jdbc:h2:./repository/database/WSO2AGENTIDENTITY_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
28+
url = "jdbc:h2:./repository/database/WSO2AGENTIDENTITY_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
2929
username = "wso2carbon"
3030
password = "wso2carbon"
3131
driver = "org.h2.Driver"

modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/identityMgt/case_insensitive_user_false.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ use_case_sensitive_username_for_cache_keys = "false"
1515

1616
[database.identity_db]
1717
type = "h2"
18-
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
18+
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
1919
username = "wso2carbon"
2020
password = "wso2carbon"
2121

2222
[database.shared_db]
2323
type = "h2"
24-
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
24+
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
2525
username = "wso2carbon"
2626
password = "wso2carbon"
2727

modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/organizationDiscovery/email_as_username.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ type = "database_unique_id"
1414

1515
[database.identity_db]
1616
type = "h2"
17-
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
17+
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
1818
username = "wso2carbon"
1919
password = "wso2carbon"
2020

2121
[database.shared_db]
2222
type = "h2"
23-
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
23+
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
2424
username = "wso2carbon"
2525
password = "wso2carbon"
2626

modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/provisioning/db_separation_config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ password = "wso2carbon"
3737

3838
[datasource.CONSENT_DB]
3939
id = "CONSENT_DB"
40-
url = "jdbc:h2:./repository/database/CONSENT_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
40+
url = "jdbc:h2:./repository/database/CONSENT_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
4141
username = "wso2carbon"
4242
password = "wso2carbon"
4343
driver = "org.h2.Driver"

modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/provisioning/default_configs_with_h2_db.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ type = "database_unique_id"
1414

1515
[database.identity_db]
1616
type = "h2"
17-
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
17+
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
1818
username = "wso2carbon"
1919
password = "wso2carbon"
2020

2121
[database.shared_db]
2222
type = "h2"
23-
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
23+
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
2424
username = "wso2carbon"
2525
password = "wso2carbon"
2626

2727
[datasource.AgentIdentity]
2828
id = "AgentIdentity"
29-
url = "jdbc:h2:./repository/database/WSO2AGENTIDENTITY_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
29+
url = "jdbc:h2:./repository/database/WSO2AGENTIDENTITY_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
3030
username = "wso2carbon"
3131
password = "wso2carbon"
3232
driver = "org.h2.Driver"

modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/saml/saml_keystore_rotation.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ type = "database_unique_id"
1414

1515
[database.identity_db]
1616
type = "h2"
17-
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
17+
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
1818
username = "wso2carbon"
1919
password = "wso2carbon"
2020

2121
[database.shared_db]
2222
type = "h2"
23-
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
23+
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
2424
username = "wso2carbon"
2525
password = "wso2carbon"
2626

2727
[datasource.AgentIdentity]
2828
id = "AgentIdentity"
29-
url = "jdbc:h2:./repository/database/WSO2AGENTIDENTITY_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
29+
url = "jdbc:h2:./repository/database/WSO2AGENTIDENTITY_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
3030
username = "wso2carbon"
3131
password = "wso2carbon"
3232
driver = "org.h2.Driver"

modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/scriptEngine/nashorn_script_engine_config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ type = "database_unique_id"
1414

1515
[database.identity_db]
1616
type = "h2"
17-
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
17+
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
1818
username = "wso2carbon"
1919
password = "wso2carbon"
2020

2121
[database.shared_db]
2222
type = "h2"
23-
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
23+
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
2424
username = "wso2carbon"
2525
password = "wso2carbon"
2626

modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/scriptEngine/openjdknashorn_script_engine_config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ type = "database_unique_id"
1414

1515
[database.identity_db]
1616
type = "h2"
17-
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
17+
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
1818
username = "wso2carbon"
1919
password = "wso2carbon"
2020

2121
[database.shared_db]
2222
type = "h2"
23-
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
23+
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
2424
username = "wso2carbon"
2525
password = "wso2carbon"
2626

modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/userMgt/ldap_user_mgt_config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ base_dn = "dc=wso2,dc=org"
1818

1919
[database.identity_db]
2020
type = "h2"
21-
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
21+
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
2222
username = "wso2carbon"
2323
password = "wso2carbon"
2424

2525
[database.shared_db]
2626
type = "h2"
27-
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
27+
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
2828
username = "wso2carbon"
2929
password = "wso2carbon"
3030

oidc-fapi-conformance-tests/config/deployment-fapi-config.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ type = "database_unique_id"
1313

1414
[database.identity_db]
1515
type = "h2"
16-
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
16+
url = "jdbc:h2:./repository/database/WSO2IDENTITY_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
1717
username = "wso2carbon"
1818
password = "wso2carbon"
1919

2020
[database.shared_db]
2121
type = "h2"
22-
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
22+
url = "jdbc:h2:./repository/database/WSO2SHARED_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
2323
username = "wso2carbon"
2424
password = "wso2carbon"
2525

2626
[datasource.AgentIdentity]
2727
id = "AgentIdentity"
28-
url = "jdbc:h2:./repository/database/WSO2AGENTIDENTITY_DB;IGNORECASE=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
28+
url = "jdbc:h2:./repository/database/WSO2AGENTIDENTITY_DB;COLLATION=en_US;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000"
2929
username = "wso2carbon"
3030
password = "wso2carbon"
3131
driver = "org.h2.Driver"

0 commit comments

Comments
 (0)