This is an automated email from the ASF dual-hosted git repository. zhonghongsheng 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 5c9ab59658c Remove useless DataConsistencyCheckAlgorithm.provider for DistSQL (#16675) 5c9ab59658c is described below commit 5c9ab59658cf7dd796c679aeab076b6d8d8a2b2a Author: Liang Zhang <zhangli...@apache.org> AuthorDate: Fri Apr 8 22:06:02 2022 +0800 Remove useless DataConsistencyCheckAlgorithm.provider for DistSQL (#16675) --- .../distsql/handler/query/ShowScalingCheckAlgorithmsQueryResultSet.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-distsql/shardingsphere-sharding-distsql-handler/src/main/java/org/apache/shardingsphere/scaling/distsql/handler/query/ShowScalingCheckAlgorithmsQueryResultSet.java b/shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-distsql/shardingsphere-sharding-distsql-handler/src/main/java/org/apache/shardingsphere/scaling/distsql/handler/query/ShowScalingCheckAlgorithmsQueryResultSet.java index 68336ab6404..7742b879b28 100644 --- a/shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-distsql/shardingsphere-sharding-distsql-handler/src/main/java/org/apache/shardingsphere/scaling/distsql/handler/query/ShowScalingCheckAlgorithmsQueryResultSet.java +++ b/shardingsphere-features/shardingsphere-sharding/shardingsphere-sharding-distsql/shardingsphere-sharding-distsql-handler/src/main/java/org/apache/shardingsphere/scaling/distsql/handler/query/ShowScalingCheckAlgorithmsQueryResultSet.java @@ -54,7 +54,7 @@ public final class ShowScalingCheckAlgorithmsQueryResultSet implements DistSQLRe @Override public Collection<String> getColumnNames() { - return Arrays.asList("type", "description", "supported_database_types", "provider"); + return Arrays.asList("type", "description", "supported_database_types"); } @Override