CREATE TABLE hello AS FROM VALUES ('world') v(s);
CREATE TABLE yellow AS FROM VALUES ('world') v(s);
select * from yellow join hello on yellow.s = hello.s; // works on server
select * from remote.yellow join remote.hello on yellow.s = hello.s; // fails in client
Not implemented Error:
Multiple streaming scans or streaming scans + CTAS / insert in the same query are not currently supported
Error: