wuwu20048 commented on issue #13057:
URL: 
https://github.com/apache/shardingsphere/issues/13057#issuecomment-950744066


   @LeeGuoPing 
   
    I found that the problem has to do with word case of plain-column。if i 
modify  the Mobile to mobile, it works fine。 can you check this?
   
   before
   ``` xml
   <encrypt:table name="doctor1">
                        <encrypt:column logic-column="mobile" 
plain-column="Mobile" cipher-column="mobile_cipher" 
encrypt-algorithm-ref="sm4_encryptor" />
                </encrypt:table>
        </encrypt:rule>
   
   ```
   after
   ```xml
   <encrypt:table name="doctor1">
                        <encrypt:column logic-column="mobile" 
plain-column="mobile" cipher-column="mobile_cipher" 
encrypt-algorithm-ref="sm4_encryptor" />
                </encrypt:table>
        </encrypt:rule>
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to