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

   **Describe the bug**
   A clear and concise description of what the bug is.
   
   When executing CREATE VIEW, it runs the given SQL and returns it:
   ```
   create view test as select 1;
   +----------+
   | Int64(1) |
   +----------+
   | 1        |
   +----------+
   1 row in set. Query took 0.046 seconds.
   
   ```
   This is a problem when you just want to create a view that may return a lot 
of data. It should behave like other "create" commands like create external 
table, which just captures the definition but doesn't select * from it.
   
   **To Reproduce**
   Steps to reproduce the behavior:
   
   **Expected behavior**
   A clear and concise description of what you expected to happen.
   
   **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