RaigorJiang opened a new issue, #33450:
URL: https://github.com/apache/shardingsphere/issues/33450
## Bug Report
### Which version of ShardingSphere did you use?
5.5.2-SNAPSHOT d10aa6fbb6b3b1ad3b6ff2caeca9384f5ebe7937
### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?
Proxy
### Expected behavior
Alter mask rule success
### Actual behavior
DistSQL execute success, bug metadata refresh failed
### Reason analyze (If you can)
No.
### Steps to reproduce the behavior, such as: SQL to execute, sharding rule
configuration, when exception occur etc.
```sql
create database sharding_db;
use sharding_db;
REGISTER STORAGE UNIT ds_0 (
URL="jdbc:mysql://127.0.0.1:3306/demo_ds_0?serverTimezone=UTC&useSSL=false&allowPublicKeyRetrieval=true",
USER="root",
PASSWORD="123456",
PROPERTIES("maximumPoolSize"=10)
);
CREATE MASK RULE t_mask (COLUMNS((NAME=order_id,TYPE(NAME='MD5'))));
ALTER MASK RULE t_mask (COLUMNS((NAME=order_id,
TYPE(NAME='MASK_FROM_X_TO_Y', PROPERTIES('from-x'=1, 'to-y'=2,
'replace-char'='*')))));
```
---
<img width="1197" alt="image"
src="https://github.com/user-attachments/assets/e5187a02-966a-4632-b5d8-2569b7a7c213">
--
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]