This is an automated email from the ASF dual-hosted git repository.
FrankChen021 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/druid.git
The following commit(s) were added to refs/heads/master by this push:
new 7bdbc2d6b81 Remove raw types in ChainedExecutionQueryRunner (#19529)
7bdbc2d6b81 is described below
commit 7bdbc2d6b8100c930ce65a48676e1bc9f567b00e
Author: Virushade <[email protected]>
AuthorDate: Thu May 28 20:46:38 2026 +0800
Remove raw types in ChainedExecutionQueryRunner (#19529)
---
.../main/java/org/apache/druid/query/ChainedExecutionQueryRunner.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/processing/src/main/java/org/apache/druid/query/ChainedExecutionQueryRunner.java
b/processing/src/main/java/org/apache/druid/query/ChainedExecutionQueryRunner.java
index 74f2ffc634a..fc56504b90e 100644
---
a/processing/src/main/java/org/apache/druid/query/ChainedExecutionQueryRunner.java
+++
b/processing/src/main/java/org/apache/druid/query/ChainedExecutionQueryRunner.java
@@ -79,7 +79,7 @@ public class ChainedExecutionQueryRunner<T> implements
QueryRunner<T>
{
Query<T> query = queryPlus.getQuery();
final int priority = query.context().getPriority();
- final Ordering ordering = query.getResultOrdering();
+ final Ordering<T> ordering = query.getResultOrdering();
final QueryPlus<T> threadSafeQueryPlus =
queryPlus.withoutThreadUnsafeState();
final QueryContext context = query.context();
@@ -91,7 +91,7 @@ public class ChainedExecutionQueryRunner<T> implements
QueryRunner<T>
@Override
public Iterator<T> make()
{
- // Make it a List<> to materialize all of the values (so that it
will submit everything to the executor)
+ // Make it a List<> to materialize all the values (so that it will
submit everything to the executor)
List<ListenableFuture<Iterable<T>>> futures =
Lists.newArrayList(
Iterables.transform(
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]