xubo245 edited a comment on pull request #25536:
URL: https://github.com/apache/spark/pull/25536#issuecomment-619477673


   Can CTAS support create table with schema?
   Already support:
   ```
    create table t1(i1 int);
    insert into t1 select i2 from t2;
   ```
    but don't support this:
   ```
   create table t1 (i1 int) as select 2 from t2;
   ```
   
   Can spark support it?


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

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



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

Reply via email to