peilinqian commented on issue #19825:
URL:
https://github.com/apache/shardingsphere/issues/19825#issuecomment-1203559174
```
test_db=> create table t_broadcast(id int);
CREATE TABLE
test_db=> insert into t_broadcast values(1);
INSERT 0 1
test_db=> begin;
BEGIN
test_db=> select * from t_broadcast;
ERROR: relation "t_broadcast" does not exist on dn_6001
LINE 1: select * from t_broadcast;
^
test_db=> end;
ROLLBACK
test_db=> select * from t_broadcast;
id
----
1
(1 row)
test_db=>
```
```
test_db=> begin;
BEGIN
test_db=> select * from t_ssdb;
ERROR: relation "t_ssdb" does not exist on dn_6001
LINE 1: select * from t_ssdb;
^
test_db=> end;
ROLLBACK
test_db=> select * from t_ssdb;
id | c_id | a | b
----+------+----+------------
2 | 1 | 20 | test21
2 | 2 | 20 | test22
2 | 3 | | Test22
4 | 4 | 40 | test4
1 | 1 | 10 | test11
1 | 2 | 10 | Test12
1 | 2 | | test12
3 | 3 | | test3
3 | 3 | | test3
5 | 5 | 50 | Test5
(10 rows)
test_db=>
```
--
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]