ReyYang opened a new issue, #14769:
URL: https://github.com/apache/shardingsphere/issues/14769
### Which version of ShardingSphere did you use?
master branch
PostgreSQL 14
### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?
ShardingSphere-Proxy
### Expected behavior
return correct result
### Actual behavior
return error
### Reason analyze (If you can)
The money field in PostgreSQL is detected with ’ , ‘
### Steps to reproduce the behavior, such as: SQL to execute, sharding rule
configuration, when exception occur etc.
1、create table
``` sql
create table table_mix
(
id bigint primary key ,
shard_id bigint not null,
t_money money null
);
```
2、insert datas
```sql
insert into table_mix (id, shard_id, t_money)
values (1, 2, 9999999);
```
3、error
```shell
sharding_db=> select * from table_mix;
ERROR: 不良的类型值 double : 9,999,999.00
```
### Example codes for reproduce this issue (such as a github link).
--
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]