paul-rogers commented on code in PR #13766:
URL: https://github.com/apache/druid/pull/13766#discussion_r1100666897
##########
sql/src/main/java/org/apache/druid/sql/calcite/planner/DruidOperatorTable.java:
##########
@@ -437,6 +442,12 @@ public DruidOperatorTable(
for (SqlOperatorConversion operatorConversion : operatorConversions) {
final OperatorKey operatorKey =
OperatorKey.of(operatorConversion.calciteOperator());
+ if (operationConversionDenySet.contains(operatorKey.name)) {
+ LOG.info(
+ "operatorKey '%s' not being added to available operatorConversions
as it was found in deny list.",
+ operatorKey.name);
Review Comment:
This is a log message that would not normally be visible to the user. This
is not a message given to the end user. The end user will get Calcite's usual
message that "function foo with arguments VARCHAR, BIGINT, is not found."
--
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]