Data Set Logical Table
data class DataSetLogicalTable(val alias: String, val dataTransforms: List<DataSetTransformOperation>? = null, val source: DataSetLogicalTableSource? = null)
A logical table is a unit that joins and that data transformations operate on. A logical table has a source, which can be either a physical table or result of a join. When a logical table points to a physical table, the logical table acts as a mutable copy of that physical table through transform operations.
Constructors
Link copied to clipboard
constructor(alias: String, dataTransforms: List<DataSetTransformOperation>? = null, source: DataSetLogicalTableSource? = null)