dsmiley commented on a change in pull request #1171: SOLR-13892: Add 'top-level' docValues Join implementation URL: https://github.com/apache/lucene-solr/pull/1171#discussion_r370304976
########## File path: solr/core/src/java/org/apache/solr/search/JoinQParserPlugin.java ########## @@ -139,11 +197,16 @@ public static Query createJoinQuery(Query subQuery, String fromField, String toF class JoinQuery extends Query { + private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass()); + String fromField; String toField; String fromIndex; // TODO: name is missleading here compared to JoinQParserPlugin usage - here it must be a core name Query q; long fromCoreOpenTime; + private boolean cache; Review comment: Not used? ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org