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

zhangliang 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 1f481b2bedd Refactor PipelineDataSourceWrapper (#27231)
1f481b2bedd is described below

commit 1f481b2beddcf40a432e0059736c1ff7ccf5033f
Author: Liang Zhang <[email protected]>
AuthorDate: Sun Jul 16 15:25:16 2023 +0800

    Refactor PipelineDataSourceWrapper (#27231)
---
 .../data/pipeline/common/datasource/PipelineDataSourceWrapper.java     | 3 +--
 ...e.core.consistencycheck.algorithm.DataConsistencyCalculateAlgorithm | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git 
a/kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/common/datasource/PipelineDataSourceWrapper.java
 
b/kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/common/datasource/PipelineDataSourceWrapper.java
index 04442f3783b..ff88190b15f 100644
--- 
a/kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/common/datasource/PipelineDataSourceWrapper.java
+++ 
b/kernel/data-pipeline/core/src/main/java/org/apache/shardingsphere/data/pipeline/common/datasource/PipelineDataSourceWrapper.java
@@ -33,13 +33,12 @@ import java.util.logging.Logger;
  * Pipeline data source wrapper is for abstract standard jdbc and sharding 
jdbc.
  */
 @RequiredArgsConstructor
+@Getter
 @Slf4j
 public final class PipelineDataSourceWrapper implements DataSource, 
AutoCloseable {
     
-    @Getter
     private final DataSource dataSource;
     
-    @Getter
     private final DatabaseType databaseType;
     
     @Override
diff --git 
a/kernel/data-pipeline/core/src/main/resources/META-INF/services/org.apache.shardingsphere.data.pipeline.core.consistencycheck.algorithm.DataConsistencyCalculateAlgorithm
 
b/kernel/data-pipeline/core/src/main/resources/META-INF/services/org.apache.shardingsphere.data.pipeline.core.consistencycheck.algorithm.DataConsistencyCalculateAlgorithm
index 4cd6bf66a43..3a6d8e369e2 100644
--- 
a/kernel/data-pipeline/core/src/main/resources/META-INF/services/org.apache.shardingsphere.data.pipeline.core.consistencycheck.algorithm.DataConsistencyCalculateAlgorithm
+++ 
b/kernel/data-pipeline/core/src/main/resources/META-INF/services/org.apache.shardingsphere.data.pipeline.core.consistencycheck.algorithm.DataConsistencyCalculateAlgorithm
@@ -15,5 +15,5 @@
 # limitations under the License.
 #
 
-org.apache.shardingsphere.data.pipeline.core.consistencycheck.algorithm.CRC32MatchDataConsistencyCalculateAlgorithm
 
org.apache.shardingsphere.data.pipeline.core.consistencycheck.algorithm.DataMatchDataConsistencyCalculateAlgorithm
+org.apache.shardingsphere.data.pipeline.core.consistencycheck.algorithm.CRC32MatchDataConsistencyCalculateAlgorithm

Reply via email to