You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by GitBox <gi...@apache.org> on 2022/07/21 07:39:43 UTC

[GitHub] [shardingsphere] strongduanmu commented on issue #19418: Incorrect integer value exception occurs when execute `insert into tb1_cipher values(3,'c',3);`

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: notifications-unsubscribe@shardingsphere.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org