TeslaCN opened a new issue, #22522:
URL: https://github.com/apache/shardingsphere/issues/22522
## Bug Report
### Which version of ShardingSphere did you use?
master - 8ffe2bb86b6da9f9c9053fb5cce28cb5b5b660db
### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?
ShardingSphere-Proxy PostgreSQL
### Expected behavior
```
postgres=# insert into t values (100, 'hi') returning t;
t
----------
(100,hi)
(1 row)
```
### Actual behavior
```
postgres=> insert into t values (1000, 'hi') returning t;
ERROR: Can not find JDBC type `2002` in PostgreSQL column type
```
### Steps to reproduce the behavior, such as: SQL to execute, sharding rule
configuration, when exception occur etc.
No rule configured.
```sql
create table t (id int, val varchar);
insert into t values (1000, 'hi') returning t;
```
--
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]