sandynz commented on pull request #12192:
URL: https://github.com/apache/shardingsphere/pull/12192#issuecomment-912316441
Test result:
```
shard1=> CREATE ENCRYPT RULE t_encrypt (
COLUMNS(
(NAME=user_id,PLAIN=user_plain,CIPHER=user_cipher,TYPE(NAME=AES,PROPERTIES('aes-key-value'=123456abc))),
(NAME=order_id,CIPHER=order_cipher,TYPE(NAME=MD5))
));
ERROR: You have an error in your SQL syntax
```
From `RDLStatement.g4`
```
algorithmProperty
: key=(IDENTIFIER | STRING) EQ value=(NUMBER | INT | STRING)
;
```
`value=(NUMBER | INT | STRING)`, `123456abc` does not match. Update it to
`'123456abc'` solve it.
--
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]