You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by zh...@apache.org on 2022/01/12 12:33:53 UTC

[shardingsphere] branch master updated (1d36573 -> dce72de)

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

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


    from 1d36573  Refactor the implementation of SHOW 'GLOBAL' RULE (#14715)
     add dce72de  Move infra.config.datasource.pool package to infra.config.datasource (#14718)

No new revisions were added by this update.

Summary of changes:
 .../datasource/DataSourcePropertiesValidator.java     |  4 ++--
 .../creator/DataSourcePoolCreationMetaData.java       |  2 +-
 .../{pool => }/creator/DataSourcePoolCreator.java     |  2 +-
 .../{pool => }/creator/DataSourcePoolCreatorUtil.java |  2 +-
 .../{pool => }/creator/DataSourceReflection.java      |  2 +-
 .../impl/DefaultDataSourcePoolCreationMetaData.java   |  4 ++--
 .../impl/HikariDataSourcePoolCreationMetaData.java    |  4 ++--
 .../{pool => }/destroyer/DataSourcePoolDestroyer.java |  2 +-
 .../destroyer/DataSourcePoolDestroyerFactory.java     |  2 +-
 .../impl/DefaultDataSourcePoolDestroyer.java          |  4 ++--
 .../destroyer/impl/HikariDataSourcePoolDestroyer.java |  4 ++--
 .../metadata/resource/ShardingSphereResource.java     |  2 +-
 .../swapper/YamlDataSourceConfigurationSwapper.java   |  2 +-
 ....datasource.creator.DataSourcePoolCreationMetaData |  3 ++-
 ...onfig.datasource.destroyer.DataSourcePoolDestroyer |  3 ++-
 ...source.pool.creator.DataSourcePoolCreationMetaData | 19 -------------------
 ....datasource.pool.destroyer.DataSourcePoolDestroyer | 19 -------------------
 .../infra/config/DataSourcePropertiesTest.java        |  2 +-
 .../creator/DataSourcePoolCreatorUtilTest.java        |  2 +-
 .../impl/DefaultDataSourcePoolCreatorTest.java        |  4 ++--
 .../creator/impl/HikariDataSourcePoolCreatorTest.java |  4 ++--
 .../jdbc/core/connection/ConnectionManager.java       |  2 +-
 .../jdbc/core/connection/ConnectionManagerTest.java   |  2 +-
 .../impl/StandardPipelineDataSourceCreator.java       |  2 +-
 .../shardingsphere/mode/manager/ContextManager.java   |  2 +-
 .../metadata/persist/MetaDataPersistServiceTest.java  |  2 +-
 .../impl/DataSourceMetaDataPersistServiceTest.java    |  2 +-
 .../manager/cluster/ClusterContextManagerBuilder.java |  4 ++--
 .../ClusterContextManagerCoordinatorTest.java         |  2 +-
 .../standalone/StandaloneContextManagerBuilder.java   |  4 ++--
 .../rql/resource/DataSourceQueryResultSet.java        |  2 +-
 .../proxy/initializer/BootstrapInitializer.java       |  2 +-
 32 files changed, 41 insertions(+), 77 deletions(-)
 rename shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/config/datasource/{pool => }/creator/DataSourcePoolCreationMetaData.java (96%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/config/datasource/{pool => }/creator/DataSourcePoolCreator.java (98%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/config/datasource/{pool => }/creator/DataSourcePoolCreatorUtil.java (97%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/config/datasource/{pool => }/creator/DataSourceReflection.java (99%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/config/datasource/{pool => }/creator/impl/DefaultDataSourcePoolCreationMetaData.java (90%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/config/datasource/{pool => }/creator/impl/HikariDataSourcePoolCreationMetaData.java (93%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/config/datasource/{pool => }/destroyer/DataSourcePoolDestroyer.java (94%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/config/datasource/{pool => }/destroyer/DataSourcePoolDestroyerFactory.java (96%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/config/datasource/{pool => }/destroyer/impl/DefaultDataSourcePoolDestroyer.java (89%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/config/datasource/{pool => }/destroyer/impl/HikariDataSourcePoolDestroyer.java (91%)
 copy examples/example-core/config-utility/src/main/resources/META-INF/services/org.apache.shardingsphere.encrypt.spi.EncryptAlgorithm => shardingsphere-infra/shardingsphere-infra-common/src/main/resources/META-INF/services/org.apache.shardingsphere.infra.config.datasource.creator.DataSourcePoolCreationMetaData (79%)
 copy examples/example-core/config-utility/src/main/resources/META-INF/services/org.apache.shardingsphere.encrypt.spi.EncryptAlgorithm => shardingsphere-infra/shardingsphere-infra-common/src/main/resources/META-INF/services/org.apache.shardingsphere.infra.config.datasource.destroyer.DataSourcePoolDestroyer (80%)
 delete mode 100644 shardingsphere-infra/shardingsphere-infra-common/src/main/resources/META-INF/services/org.apache.shardingsphere.infra.config.datasource.pool.creator.DataSourcePoolCreationMetaData
 delete mode 100644 shardingsphere-infra/shardingsphere-infra-common/src/main/resources/META-INF/services/org.apache.shardingsphere.infra.config.datasource.pool.destroyer.DataSourcePoolDestroyer
 rename shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/config/datasource/{pool => }/creator/DataSourcePoolCreatorUtilTest.java (98%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/config/datasource/{pool => }/creator/impl/DefaultDataSourcePoolCreatorTest.java (94%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/config/datasource/{pool => }/creator/impl/HikariDataSourcePoolCreatorTest.java (97%)