kgyrtkirk commented on code in PR #15465:
URL: https://github.com/apache/druid/pull/15465#discussion_r1447394351
##########
processing/src/main/java/org/apache/druid/query/DataSource.java:
##########
@@ -66,10 +66,14 @@ public interface DataSource
/**
* Returns true if queries on this dataSource are cacheable at both the
result level and per-segment level.
+ *
* Currently, dataSources that do not actually reference segments (like
'inline'), are not cacheable since cache keys
* are always based on segment identifiers.
*/
- boolean isCacheable(boolean isBroker);
+ default boolean isCacheable(boolean isBroker)
+ {
+ return false;
+ }
Review Comment:
I've undone this change
--
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]