summaryrefslogtreecommitdiff
path: root/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/Table.kt
diff options
context:
space:
mode:
Diffstat (limited to 'opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/Table.kt')
-rw-r--r--opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/Table.kt10
1 files changed, 0 insertions, 10 deletions
diff --git a/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/Table.kt b/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/Table.kt
index 164f5084..031ee269 100644
--- a/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/Table.kt
+++ b/opendc-trace/opendc-trace-api/src/main/kotlin/org/opendc/trace/Table.kt
@@ -32,11 +32,6 @@ public interface Table {
public val name: String
/**
- * A flag to indicate that the table is synthetic (derived from another table).
- */
- public val isSynthetic: Boolean
-
- /**
* The list of columns supported in this table.
*/
public val columns: List<TableColumn<*>>
@@ -50,9 +45,4 @@ public interface Table {
* Open a [TableReader] for this table.
*/
public fun newReader(): TableReader
-
- /**
- * Open a [TableReader] for [partition] of the table.
- */
- public fun newReader(partition: String): TableReader
}