diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-04-29 12:09:51 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-04-30 17:45:52 +0200 |
| commit | 412d8d597511122f114d69a4ba64c6b55dd192f9 (patch) | |
| tree | 294984990e064631b5f02701756e93b7e60d0e88 /opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/TableColumn.kt | |
| parent | 44ddd27a745f2dfe4b6ffef1b7657d156dd61489 (diff) | |
feat(trace/calcite): Add Calcite (SQL) integration
This change adds support for querying workload trace formats implemented
using the OpenDC API through Apache Calcite. This allows users to write
SQL queries to explore the workload traces.
Diffstat (limited to 'opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/TableColumn.kt')
| -rw-r--r-- | opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/TableColumn.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/TableColumn.kt b/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/TableColumn.kt index 776c40c0..b77a2982 100644 --- a/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/TableColumn.kt +++ b/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/TableColumn.kt @@ -33,7 +33,7 @@ public class TableColumn<out T>(public val name: String, type: Class<T>) { /** * The type of the column. */ - private val type: Class<*> = type + public val type: Class<*> = type /** * Determine whether the type of the column is a subtype of [column]. |
