menghaoranss commented on issue #34816:
URL: 
https://github.com/apache/shardingsphere/issues/34816#issuecomment-3345278586

   I have tested and confirmed that this issue has been resolved:
   ```
   mysql> create database sharding_db;
   Query OK, 0 rows affected (1.84 sec)
   
   mysql> use sharding_db;
   Database changed
   mysql> 
   mysql> REGISTER STORAGE UNIT product (
       ->     HOST="127.0.0.1",
       ->     PORT=3306,
       ->     DB="product",
       ->     USER="root",
       ->     PASSWORD="123456"
       -> );
   Query OK, 0 rows affected (2.45 sec)
   
   mysql> load single table *.*;
   Query OK, 0 rows affected (1.37 sec)
   
   mysql> show tables;
   Empty set (0.01 sec)
   
   mysql> create table test_1(id int not null);
   Query OK, 0 rows affected (2.67 sec)
   
   mysql> show tables;
   +-----------------------+
   | Tables_in_sharding_db |
   +-----------------------+
   | test_1                |
   +-----------------------+
   1 row in set (0.01 sec)
   ```


-- 
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]

Reply via email to