data class Query
(source)
Query model which is responsible for the-life-of-a-query.
Query(telepath: Telepath, input: String)
Query model which is responsible for the-life-of-a-query. |
var flattenedLogicalPlan: LogicalPlan? |
|
val input: String
The input as given by the user. |
|
var physicalPlan: PhysicalPlan? |
|
val telepath: Telepath
Reference to the Telepath module. |
fun evaluate(): Long |
|
fun flattenLogicalPlan(): Unit |
|
fun generatePhysicalPlan(): Long |
|
fun parseInput(): Unit |
|
fun printCount(force: Boolean = false): Unit |
|
fun printEstimate(): Unit |
|
fun printResults(maxSize: Long = 10): Unit |