mirror of https://github.com/apache/druid.git
Make buildQueryRunnerForSegment protected in ServerManager(#11493)
This is a minor change in ServerManager. Any sub-class can access the buildQueryRunnerForSegment in an extension if required.
This commit is contained in:
parent
c98e7c3aa3
commit
fcb908d505
|
@ -238,7 +238,7 @@ public class ServerManager implements QuerySegmentWalker
|
|||
);
|
||||
}
|
||||
|
||||
<T> QueryRunner<T> buildQueryRunnerForSegment(
|
||||
protected <T> QueryRunner<T> buildQueryRunnerForSegment(
|
||||
final Query<T> query,
|
||||
final SegmentDescriptor descriptor,
|
||||
final QueryRunnerFactory<T, Query<T>> factory,
|
||||
|
|
Loading…
Reference in New Issue