RaigorJiang opened a new issue, #31107:
URL: https://github.com/apache/shardingsphere/issues/31107
## Bug Report
### Which version of ShardingSphere did you use?
master 31fc9afcf04eb95d433ac119a722fdc82d24b203
### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?
ShardingSphere-Proxy
### Expected behavior
Return correct query results (or empty results)
### Actual behavior
```sql
mysql> select * from information_schema.tables;
ERROR 2027 (HY000): Malformed packet
mysql> select * from information_schema.tables;
ERROR 2008 (HY000): MySQL client ran out of memory
No connection. Trying to reconnect...
Connection id: 6
Current database: *** NONE ***
ERROR 2027 (HY000): Malformed packet
mysql>
```
### Steps to reproduce the behavior, such as: SQL to execute, sharding rule
configuration, when exception occur etc.
1. Start Proxy with cluster mode
```yaml
mode:
type: Cluster
repository:
type: ZooKeeper
props:
namespace: governance_ds_ss
server-lists: localhost:2181
retryIntervalMilliseconds: 500
timeToLiveSeconds: 60
maxRetries: 3
operationTimeoutMilliseconds: 500
```
2. Connect Proxy with MySQL client
3. Execute SQL `select * from information_schema.tables;`
--
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]