This is an automated email from the ASF dual-hosted git repository.

terrymanu 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 53049dfcd2c Remove unused MCP E2E fixture field (#39023)
53049dfcd2c is described below

commit 53049dfcd2c2524af11128d3d2864aea6424777d
Author: Liang Zhang <[email protected]>
AuthorDate: Mon Jul 6 21:05:36 2026 +0800

    Remove unused MCP E2E fixture field (#39023)
    
    Remove the unused physicalDatabaseName field from the proxy encrypt workflow
    runtime fixture. The fixture only exposes the logical database and runtime
    database configuration, and no tests read the physical database getter.
---
 .../mcp/support/runtime/ProxyEncryptWorkflowRuntimeTestSupport.java | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git 
a/test/e2e/mcp/src/test/java/org/apache/shardingsphere/test/e2e/mcp/support/runtime/ProxyEncryptWorkflowRuntimeTestSupport.java
 
b/test/e2e/mcp/src/test/java/org/apache/shardingsphere/test/e2e/mcp/support/runtime/ProxyEncryptWorkflowRuntimeTestSupport.java
index 22ae3b879b7..09d43d7ca7b 100644
--- 
a/test/e2e/mcp/src/test/java/org/apache/shardingsphere/test/e2e/mcp/support/runtime/ProxyEncryptWorkflowRuntimeTestSupport.java
+++ 
b/test/e2e/mcp/src/test/java/org/apache/shardingsphere/test/e2e/mcp/support/runtime/ProxyEncryptWorkflowRuntimeTestSupport.java
@@ -39,8 +39,6 @@ public final class ProxyEncryptWorkflowRuntimeTestSupport {
     
     private static final String LOGICAL_DATABASE_NAME = "logic_db";
     
-    private static final String PHYSICAL_DATABASE_NAME = "orders";
-    
     private static final String STORAGE_NETWORK_ALIAS = "mysql.workflow.host";
     
     private static final String PROXY_USER = "proxy";
@@ -92,8 +90,8 @@ public final class ProxyEncryptWorkflowRuntimeTestSupport {
     /**
      * Proxy-backed runtime fixture.
      */
-    @Getter
     @RequiredArgsConstructor(access = AccessLevel.PRIVATE)
+    @Getter
     public static final class ProxyEncryptWorkflowRuntimeFixture implements 
AutoCloseable {
         
         private final GenericContainer<?> storageContainer;
@@ -104,8 +102,6 @@ public final class ProxyEncryptWorkflowRuntimeTestSupport {
         
         private final String logicalDatabaseName = LOGICAL_DATABASE_NAME;
         
-        private final String physicalDatabaseName = PHYSICAL_DATABASE_NAME;
-        
         @Override
         public void close() {
             proxyContainer.stop();

Reply via email to