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 0da2f78a582 Correct mismatched attribute names. (#18552)
0da2f78a582 is described below
commit 0da2f78a582adc0a779e8b10dbdbff322c6262c2
Author: yx9o <[email protected]>
AuthorDate: Thu Jun 23 23:22:13 2022 +0800
Correct mismatched attribute names. (#18552)
---
.../shadow/distsql/parser/statement/ShowShadowRulesStatement.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/shardingsphere-features/shardingsphere-shadow/shardingsphere-shadow-distsql/shardingsphere-shadow-distsql-statement/src/main/java/org/apache/shardingsphere/shadow/distsql/parser/statement/ShowShadowRulesStatement.java
b/shardingsphere-features/shardingsphere-shadow/shardingsphere-shadow-distsql/shardingsphere-shadow-distsql-statement/src/main/java/org/apache/shardingsphere/shadow/distsql/parser/statement/ShowShadowRulesStatement.java
index 073020a528e..90ec7492f5d 100644
---
a/shardingsphere-features/shardingsphere-shadow/shardingsphere-shadow-distsql/shardingsphere-shadow-distsql-statement/src/main/java/org/apache/shardingsphere/shadow/distsql/parser/statement/ShowShadowRulesStatement.java
+++
b/shardingsphere-features/shardingsphere-shadow/shardingsphere-shadow-distsql/shardingsphere-shadow-distsql-statement/src/main/java/org/apache/shardingsphere/shadow/distsql/parser/statement/ShowShadowRulesStatement.java
@@ -29,8 +29,8 @@ public final class ShowShadowRulesStatement extends
ShowRulesStatement {
private final String ruleName;
- public ShowShadowRulesStatement(final String tableName, final
DatabaseSegment database) {
+ public ShowShadowRulesStatement(final String ruleName, final
DatabaseSegment database) {
super(database);
- this.ruleName = tableName;
+ this.ruleName = ruleName;
}
}