You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by wu...@apache.org on 2022/05/16 05:56:08 UTC

[shardingsphere] branch master updated: Revise #17691 (#17692)

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

wuweijie 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 cec5acfc5c6 Revise #17691 (#17692)
cec5acfc5c6 is described below

commit cec5acfc5c624f984cc1357fa310b51b6516ff28
Author: Liang Zhang <zh...@apache.org>
AuthorDate: Mon May 16 13:56:03 2022 +0800

    Revise #17691 (#17692)
    
    * Revise #17691
    
    * Revise #17691
---
 .../encrypt/rewrite/token/pojo/EncryptParameterAssignmentToken.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-core/src/main/java/org/apache/shardingsphere/encrypt/rewrite/token/pojo/EncryptParameterAssignmentToken.java b/shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-core/src/main/java/org/apache/shardingsphere/encrypt/rewrite/token/pojo/EncryptParameterAssignmentToken.java
index 27f811d9ab9..31de2ed44b7 100644
--- a/shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-core/src/main/java/org/apache/shardingsphere/encrypt/rewrite/token/pojo/EncryptParameterAssignmentToken.java
+++ b/shardingsphere-features/shardingsphere-encrypt/shardingsphere-encrypt-core/src/main/java/org/apache/shardingsphere/encrypt/rewrite/token/pojo/EncryptParameterAssignmentToken.java
@@ -44,8 +44,8 @@ public final class EncryptParameterAssignmentToken extends EncryptAssignmentToke
     @Override
     public String toString() {
         StringJoiner result = new StringJoiner(", ");
-        for (String input : columnNames) {
-            result.add(input + " = ?");
+        for (String each : columnNames) {
+            result.add(each + " = ?");
         }
         return result.toString();
     }