kfaraz commented on code in PR #17960:
URL: https://github.com/apache/druid/pull/17960#discussion_r2070649812
##########
processing/src/main/java/org/apache/druid/query/lookup/LookupSegment.java:
##########
@@ -80,5 +79,12 @@ public Function<Map.Entry<String, String>, Object>
columnFunction(String columnN
},
ROW_SIGNATURE
);
+ this.lookupName = lookupName;
+ }
+
+ @Override
+ public String asString()
+ {
+ return "lookup." + lookupName;
Review Comment:
Nit: Since the default impl prints the class name, we could do
```suggestion
return getClass().getSimpleName() + ":" + lookupName;
```
--
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]