snuyanzin commented on code in PR #26719:
URL: https://github.com/apache/flink/pull/26719#discussion_r2178161384
##########
flink-table/flink-table-planner/src/main/scala/org/apache/flink/table/planner/codegen/calls/ScalarOperatorGens.scala:
##########
@@ -1423,7 +1423,7 @@ object ScalarOperatorGens {
| $resultTerm = $nullTerm ? $defaultValue : $arrayGet;
| break;
| default:
- | throw new RuntimeException("Array has more than one element.");
+ | throw new TableRuntimeException("Array has more than one
element.");
Review Comment:
Ideally ValidationException should be used if something failed during
validation phase
TableRuntimeException should be used if validation passed and error happened
in runtime
--
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]