dilipbiswal commented on code in PR #55629:
URL: https://github.com/apache/spark/pull/55629#discussion_r3185289241
##########
common/utils/src/main/resources/error/error-conditions.json:
##########
@@ -5313,6 +5313,49 @@
],
"sqlState" : "0A000"
},
+ "NEAREST_BY_JOIN" : {
+ "message" : [
+ "Invalid nearest-by join."
+ ],
+ "subClass" : {
+ "EXACT_WITH_NONDETERMINISTIC_EXPRESSION" : {
+ "message" : [
+ "EXACT nearest-by join is incompatible with the nondeterministic
ranking expression <expression>. Use APPROX, or replace the expression with a
deterministic one."
+ ]
+ },
+ "NON_ORDERABLE_RANKING_EXPRESSION" : {
+ "message" : [
+ "The ranking expression <expression> of type <type> is not
orderable."
+ ]
+ },
+ "NUM_RESULTS_OUT_OF_RANGE" : {
+ "message" : [
+ "The number of results <numResults> must be between <min> and <max>."
+ ]
+ },
+ "STREAMING_NOT_SUPPORTED" : {
+ "message" : [
+ "nearest-by join is not supported with streaming
DataFrames/Datasets."
Review Comment:
Done
--
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]