ottomata commented on PR #21012: URL: https://github.com/apache/spark/pull/21012#issuecomment-1857893125
@cloud-fan oh! THIS WORKS! ```sql spark-sql (default)> describe otto.test_table03; col_name data_type comment s1 struct<s1_f1:string> spark-sql (default)> ALTER TABLE otto.test_table03 ADD COLUMN s1.s1_f2_added STRING; 'spark-sql (default)> describe otto.test_table03; col_name data_type comment s1 struct<s1_f1:string,s1_f2_added:string> ``` AMAZING! Thank you! Feels simpler than `change column`. <3 -- 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]
