xudong963 opened a new issue #1412:
URL: https://github.com/apache/arrow-datafusion/issues/1412


   **Describe the bug**
   `Select *` returns an unexpected result.
   
   **To Reproduce**
   
   ```
   ❯ select *;
   +-------------+
   | placeholder |
   +-------------+
   |             |
   +-------------+
   1 row in set. Query took 0.008 seconds.
   ```
   
   **Expected behavior**
   ```sql
   ❯ select *;
   Plan("SELECT * with no tables specified is not valid")
   ❯
   ```
   
   
   **Additional context**
   
   postgres
   ```sql
   postgres=# select *;
   ERROR:  SELECT * with no tables specified is not valid
   LINE 1: select *;
   ```


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