This is an automated email from the ASF dual-hosted git repository.
menghaoranss pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new 8e250915f18 Fix IdentifierCasePolicyResolverTest (#38986)
8e250915f18 is described below
commit 8e250915f18107549df96f6212666952c433438d
Author: Haoran Meng <[email protected]>
AuthorDate: Fri Jul 3 10:03:10 2026 +0800
Fix IdentifierCasePolicyResolverTest (#38986)
---
.../infra/metadata/identifier/IdentifierCasePolicyResolverTest.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git
a/infra/common/src/test/java/org/apache/shardingsphere/infra/metadata/identifier/IdentifierCasePolicyResolverTest.java
b/infra/common/src/test/java/org/apache/shardingsphere/infra/metadata/identifier/IdentifierCasePolicyResolverTest.java
index 9ea79959461..12e46c1518a 100644
---
a/infra/common/src/test/java/org/apache/shardingsphere/infra/metadata/identifier/IdentifierCasePolicyResolverTest.java
+++
b/infra/common/src/test/java/org/apache/shardingsphere/infra/metadata/identifier/IdentifierCasePolicyResolverTest.java
@@ -61,8 +61,7 @@ class IdentifierCasePolicyResolverTest {
void assertResolveWithAutoOracleRule() {
IdentifierCasePolicy actual =
resolver.resolve(TypedSPILoader.getService(DatabaseType.class, "Oracle"), new
ConfigurationProperties(new Properties()),
null).getPolicy(IdentifierScope.TABLE);
assertTrue(actual.matches("FOO", "foo", QuoteCharacter.NONE));
- // TODO FIXME
- // assertFalse(actual.matches("Foo", "foo", QuoteCharacter.NONE));
+ assertFalse(actual.matches("Foo", "foo", QuoteCharacter.NONE));
}
@Test