gengliangwang commented on PR #36091:
URL: https://github.com/apache/spark/pull/36091#issuecomment-1098110269

   BTW, we should handle the following case 
   ```
   create table t1(i int) using parquet
   insert into t1 values (1)
   alter table t1 add column j int default 3
   insert into t1 values (2, 4)
   select * from t1
   ```
   It should return ((1, 3), (2, 4)), but currently it returns ((1, null), (2, 
4))


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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to