strongduanmu commented on issue #19418:
URL: 
https://github.com/apache/shardingsphere/issues/19418#issuecomment-1191151605

   I found `insert into tb1_cipher values(3,'c',3);` has a potential problem, 
if we complete the encrypt wash and switch the query to the cipher column 
`QUERY_WITH_CIPHER_COLUMN=TRUE`, this time if we delete plain column, which 
will cause a change in the order of fields in metadata.
   The change of the field order will cause `insert into tb1_cipher 
values(3,'c',3);` to execute abnormally, so the more recommended way to use is 
`insert into tb1_cipher(id,contact,aa) values(3,'c' ,3);`.


-- 
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