cloud-fan commented on code in PR #43843:
URL: https://github.com/apache/spark/pull/43843#discussion_r1400573783
##########
common/utils/src/main/resources/error/error-classes.json:
##########
@@ -987,6 +987,18 @@
],
"sqlState" : "42K09"
},
+ "EXCEPT_NESTED_COLUMN_INVALID_TYPE" : {
+ "message" : [
+ "EXCEPT column <columnName> was resolved and expected to be StructType,
but found type <dataType>."
+ ],
+ "sqlState" : "428H2"
+ },
+ "EXCEPT_OVERLAPPING_COLUMNS" : {
+ "message" : [
+ "Columns in an EXCEPT list must be distinct and non-overlapping."
Review Comment:
```suggestion
"Columns in an EXCEPT list must be distinct and non-overlapping, but
got <columns>."
```
shall we put the full EXCEPT column list?
--
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]