alamb commented on issue #10421:
URL: https://github.com/apache/datafusion/issues/10421#issuecomment-2101067583

   Thanks for the report @fabianmurariu 
   
   Is there any way we can get a self contained reproducer? I ran the query in 
the description and it doesn't seem to have all the tables
   
   ```sql
   > WITH e1 AS (SELECT * FROM _default), e2 AS (SELECT * FROM _default), a AS 
(SELECT * FROM nodes), b AS (SELECT * FROM nodes), c AS (SELECT * FROM nodes) 
SELECT a.name, b.name, c.name FROM e1 JOIN a ON e1.src = a.id JOIN b ON e1.dst 
= b.id JOIN e2 ON b.id = e2.src JOIN c ON e2.dst = c.id WHERE e1.id <> e2.id;
   Error during planning: table 'datafusion.public._default' not found
   ```
   
   


-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to