yukkit opened a new issue, #5382:
URL: https://github.com/apache/arrow-datafusion/issues/5382

   **Describe the bug**
   A clear and concise description of what the bug is.
   
   **To Reproduce**
   Steps to reproduce the behavior:
   
   ```shell
   DataFusion CLI v18.0.0
   ❯ create table test1(intt int, inttt int) as select 1 as intt, 2 as inttt;
   0 rows in set. Query took 0.017 seconds.
   ❯ create table test2(intt int, inttt int) as select 1 as intt, 2 as inttt;
   0 rows in set. Query took 0.006 seconds.
   ❯ SELECT *
   FROM test2
           FULL JOIN test1 ON true;
   Execution error: Build left right indices error
   ❯ 
   ```
   
   **Expected behavior**
   A clear and concise description of what you expected to happen.
   
   return the correct record
   
   **Additional context**
   Add any other context about the problem here.
   


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