You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by me...@apache.org on 2022/01/02 11:56:26 UTC

[shardingsphere] branch master updated (e54abcb -> cec1a5d)

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

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


    from e54abcb  Merge JdbcUri and JdbcUrlParser (#14482)
     add cec1a5d  Add JdbcUrl to decouple JdbcUrlParser (#14483)

No new revisions were added by this update.

Summary of changes:
 .../pool/creator/DataSourceReflection.java         |   4 +-
 .../infra/config/datasource/url/JdbcUrl.java       |  14 +--
 .../config/datasource/{ => url}/JdbcUrlParser.java |  61 ++++--------
 .../infra/config/datasource/JdbcUrlParserTest.java | 102 -------------------
 .../config/datasource/url/JdbcUrlParserTest.java   | 108 +++++++++++++++++++++
 .../scenario/rulealtered/RuleAlteredJobWorker.java |   5 +-
 .../mysql/ingest/MySQLIncrementalDumper.java       |  13 +--
 .../mysql/ingest/MySQLIncrementalDumperTest.java   |  17 ++--
 ...rdingSpherePipelineDataSourceConfiguration.java |   4 +-
 .../StandardPipelineDataSourceConfiguration.java   |   4 +-
 10 files changed, 159 insertions(+), 173 deletions(-)
 copy shardingsphere-proxy/shardingsphere-proxy-frontend/shardingsphere-proxy-frontend-spi/src/main/java/org/apache/shardingsphere/proxy/frontend/authentication/AuthenticationResult.java => shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/config/datasource/url/JdbcUrl.java (82%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/config/datasource/{ => url}/JdbcUrlParser.java (74%)
 delete mode 100644 shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/config/datasource/JdbcUrlParserTest.java
 create mode 100644 shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/config/datasource/url/JdbcUrlParserTest.java