Package org.apache.druid.sql.http
Interface QueryInfo
public interface QueryInfo
Information about a SQL query. Implementations are engine-specific.
-
Method Summary
-
Method Details
-
engine
String engine()Returns the engine name for this query, matching the JSON "engine" property. -
state
String state()Returns the state of this query, which may be an engine-specific string. Standard strings are inStandardQueryState, although engines can use additional strings if they like. -
executionId
String executionId()Returns the execution ID for this query. This is the system-generated ID used internally, such as the dartQueryId for Dart queries.
-