| Package | Description |
|---|---|
| org.apache.druid.sql |
| Modifier and Type | Class and Description |
|---|---|
class |
DirectStatement
Lifecycle for direct SQL statement execution, which means that the query
is planned and executed in a single step, with no "prepare" step.
|
class |
DirectStatement.ResultSet
Represents the execution plan for a query with the ability to run
that plan (once).
|
class |
HttpStatement
SQL statement lifecycle for the HTTP endpoint.
|
| Modifier and Type | Method and Description |
|---|---|
List<SqlLifecycleManager.Cancelable> |
SqlLifecycleManager.getAll(String sqlQueryId)
Returns a snapshot of the lifecycles for the given sqlQueryId.
|
| Modifier and Type | Method and Description |
|---|---|
void |
SqlLifecycleManager.add(String sqlQueryId,
SqlLifecycleManager.Cancelable lifecycle) |
void |
SqlLifecycleManager.remove(String sqlQueryId,
SqlLifecycleManager.Cancelable lifecycle)
Removes the given lifecycle of the given query ID.
|
| Modifier and Type | Method and Description |
|---|---|
void |
SqlLifecycleManager.removeAll(String sqlQueryId,
List<SqlLifecycleManager.Cancelable> lifecyclesToRemove)
For the given sqlQueryId, this method removes all lifecycles that match to the given list of lifecycles.
|
Copyright © 2011–2022 The Apache Software Foundation. All rights reserved.