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

panjuan pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git.


    from 78f6477  fix issue 6909 (#6941)
     new b424d3d  Refactor ShardingSphereAlgorithmBeanRegistry
     new 804c679  Add ShardingSphereAlgorithmBeanRegistryTest
     new 6eb42ae  Add ShardingSphereAlgorithmFactoryBeanTest
     new 8da53d6  Refactor ShardingSphereAlgorithmFactoryBean constructor's 
sequence
     new 1de1a46  Refactor ShardingSphereAlgorithmFactoryBean constructor's 
sequence
     new 63c6e76  Add registry package
     new 34646d3  Add ShardingSphereAlgorithmSpringNamespaceTest
     new ab4e771  Remove ShardingSphereAlgorithmFactoryBeanTest
     new e44da83  Rename ShardingSphereAlgorithmFixtureNamespaceHandler
     new cd45d43  Rename FooShardingSphereFixtureAlgorithm
     new 5eae3e9  Merge pull request #6959 from terrymanu/dev

The 26226 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../factorybean/EncryptAlgorithmFactoryBean.java   |  2 +-
 .../parser/EncryptRuleBeanDefinitionParser.java    |  2 +-
 ...MasterSlaveLoadBalanceAlgorithmFactoryBean.java |  2 +-
 .../MasterSlaveRuleBeanDefinitionParser.java       |  2 +-
 .../KeyGenerateAlgorithmFactoryBean.java           |  2 +-
 .../factorybean/ShardingAlgorithmFactoryBean.java  |  2 +-
 .../rule/ShardingRuleBeanDefinitionParser.java     |  2 +-
 .../pom.xml                                        |  4 ++
 .../ShardingSphereAlgorithmFactoryBean.java        |  6 +--
 ...hardingSphereAlgorithmBeanDefinitionParser.java |  2 +-
 .../ShardingSphereAlgorithmBeanRegistry.java       |  5 +-
 ...ShardingSphereAlgorithmSpringNamespaceTest.java | 55 ++++++++++++++++++++++
 .../fixture/FooShardingSphereFixtureAlgorithm.java | 16 +++++--
 .../fixture/ShardingSphereFixtureAlgorithm.java    |  7 +--
 .../ShardingSphereAlgorithmFixtureFactoryBean.java | 15 +++---
 ...ingSphereAlgorithmFixtureNamespaceHandler.java} | 13 ++---
 .../ShardingSphereAlgorithmBeanRegistryTest.java   | 45 ++++++++++++++++++
 .../META-INF/namespace/algorithm-fixture.xsd}      | 11 ++---
 ...amespace.fixture.ShardingSphereFixtureAlgorithm |  2 +-
 .../src/test}/resources/META-INF/spring.handlers   |  2 +-
 .../src/test}/resources/META-INF/spring.schemas    |  2 +-
 .../META-INF/spring/application-context.xml        | 20 +++-----
 .../src/test/resources/conf/conf.properties        |  2 +-
 .../src/test/resources/logback-test.xml            |  0
 24 files changed, 157 insertions(+), 64 deletions(-)
 rename 
shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/shardingsphere-jdbc-spring-namespace-infra/src/main/java/org/apache/shardingsphere/spring/namespace/{parser
 => registry}/ShardingSphereAlgorithmBeanRegistry.java (88%)
 create mode 100644 
shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/shardingsphere-jdbc-spring-namespace-infra/src/test/java/org/apache/shardingsphere/spring/namespace/ShardingSphereAlgorithmSpringNamespaceTest.java
 copy 
shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/config/fixture/WithoutInitAlgorithm.java
 => 
shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/shardingsphere-jdbc-spring-namespace-infra/src/test/java/org/apache/shardingsphere/spring/namespace/fixture/FooShardingSphereFixtureAlgorithm.java
 (74%)
 copy 
shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-api/src/main/java/org/apache/shardingsphere/sharding/spi/ShardingAlgorithm.java
 => 
shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/shardingsphere-jdbc-spring-namespace-infra/src/test/java/org/apache/shardingsphere/spring/namespace/fixture/ShardingSphereFixtureAlgorithm.java
 (84%)
 copy 
shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-spring/shardingsphere-encrypt-spring-namespace/src/main/java/org/apache/shardingsphere/encrypt/spring/namespace/factorybean/EncryptAlgorithmFactoryBean.java
 => 
shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/shardingsphere-jdbc-spring-namespace-infra/src/test/java/org/apache/shardingsphere/spring/namespace/fixture/factorybean/ShardingSphereAlgorithmFixtureFactoryBean.java
 (66%)
 copy 
shardingsphere-jdbc/shardingsphere-jdbc-spring/{shardingsphere-jdbc-orchestration-spring/shardingsphere-jdbc-orchestration-spring-namespace/src/main/java/org/apache/shardingsphere/spring/namespace/orchestration/handler/ClusterNamespaceHandler.java
 => 
shardingsphere-jdbc-spring-infra/shardingsphere-jdbc-spring-namespace-infra/src/test/java/org/apache/shardingsphere/spring/namespace/fixture/handler/ShardingSphereAlgorithmFixtureNamespaceHandler.java}
 (63%)
 create mode 100644 
shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/shardingsphere-jdbc-spring-namespace-infra/src/test/java/org/apache/shardingsphere/spring/namespace/registry/ShardingSphereAlgorithmBeanRegistryTest.java
 copy 
shardingsphere-jdbc/shardingsphere-jdbc-spring/{shardingsphere-jdbc-core-spring/shardingsphere-jdbc-core-spring-namespace/src/main/resources/META-INF/namespace/datasource.xsd
 => 
shardingsphere-jdbc-spring-infra/shardingsphere-jdbc-spring-namespace-infra/src/test/resources/META-INF/namespace/algorithm-fixture.xsd}
 (83%)
 copy 
shardingsphere-control-panel/shardingsphere-cluster/shardingsphere-cluster-facade/src/main/resources/META-INF/services/org.apache.shardingsphere.control.panel.spi.ControlPanelFacade
 => 
shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/shardingsphere-jdbc-spring-namespace-infra/src/test/resources/META-INF/services/org.apache.shardingsphere.spring.namespace.fixture.ShardingSphereFixtureAlgorithm
 (90%)
 copy 
{shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-spring/shardingsphere-encrypt-spring-namespace/src/main
 => 
shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/shardingsphere-jdbc-spring-namespace-infra/src/test}/resources/META-INF/spring.handlers
 (81%)
 copy 
{shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-spring/shardingsphere-encrypt-spring-namespace/src/main
 => 
shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/shardingsphere-jdbc-spring-namespace-infra/src/test}/resources/META-INF/spring.schemas
 (85%)
 copy 
shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-spring/shardingsphere-encrypt-spring-namespace/src/test/resources/META-INF/spring/encrypt-application-context.xml
 => 
shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/shardingsphere-jdbc-spring-namespace-infra/src/test/resources/META-INF/spring/application-context.xml
 (67%)
 copy 
shardingsphere-control-panel/shardingsphere-opentracing/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker
 => 
shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/shardingsphere-jdbc-spring-namespace-infra/src/test/resources/conf/conf.properties
 (97%)
 copy 
{shardingsphere-features/shardingsphere-shadow/shardingsphere-shadow-spring/shardingsphere-shadow-spring-namespace
 => 
shardingsphere-jdbc/shardingsphere-jdbc-spring/shardingsphere-jdbc-spring-infra/shardingsphere-jdbc-spring-namespace-infra}/src/test/resources/logback-test.xml
 (100%)

Reply via email to