autophagy commented on code in PR #27775:
URL: https://github.com/apache/flink/pull/27775#discussion_r2945321534
##########
flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/expressions/resolver/rules/ResolveCallByArgumentsRule.java:
##########
@@ -681,6 +681,23 @@ public List<DataType> getArgumentDataTypes() {
.collect(Collectors.toList());
}
+ @Override
+ public Optional<String> getArgumentName(int pos) {
+ final ResolvedExpression arg = getArgument(pos);
+
+ if (arg instanceof CallExpression) {
+ final CallExpression call = (CallExpression) arg;
+ if (call.getFunctionDefinition() ==
BuiltInFunctionDefinitions.AS) {
Review Comment:
I don't _believe_ Flink does support it, but I'll verify
--
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]