Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.trino.sql.planner.plan.TableWriterNode Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.trino.sql.planner.plan;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Iterables;
import com.google.errorprone.annotations.Immutable;
import io.trino.Session;
import io.trino.metadata.InsertTableHandle;
import io.trino.metadata.MergeHandle;
import io.trino.metadata.Metadata;
import io.trino.metadata.OutputTableHandle;
import io.trino.metadata.QualifiedObjectName;
import io.trino.metadata.TableExecuteHandle;
import io.trino.metadata.TableHandle;
import io.trino.metadata.TableLayout;
import io.trino.spi.connector.ColumnHandle;
import io.trino.spi.connector.ConnectorTableMetadata;
import io.trino.spi.connector.RowChangeParadigm;
import io.trino.spi.connector.SchemaTableName;
import io.trino.spi.connector.WriterScalingOptions;
import io.trino.spi.type.Type;
import io.trino.sql.planner.PartitioningScheme;
import io.trino.sql.planner.Symbol;
import java.util.List;
import java.util.Optional;
import java.util.OptionalInt;
import static com.google.common.base.Preconditions.checkArgument;
import static java.util.Objects.requireNonNull;
@Immutable
public class TableWriterNode
extends PlanNode
{
private final PlanNode source;
private final WriterTarget target;
private final Symbol rowCountSymbol;
private final Symbol fragmentSymbol;
private final List columns;
private final List columnNames;
private final Optional partitioningScheme;
private final Optional statisticsAggregation;
private final Optional> statisticsAggregationDescriptor;
private final List outputs;
@JsonCreator
public TableWriterNode(
@JsonProperty("id") PlanNodeId id,
@JsonProperty("source") PlanNode source,
@JsonProperty("target") WriterTarget target,
@JsonProperty("rowCountSymbol") Symbol rowCountSymbol,
@JsonProperty("fragmentSymbol") Symbol fragmentSymbol,
@JsonProperty("columns") List columns,
@JsonProperty("columnNames") List columnNames,
@JsonProperty("partitioningScheme") Optional partitioningScheme,
@JsonProperty("statisticsAggregation") Optional statisticsAggregation,
@JsonProperty("statisticsAggregationDescriptor") Optional> statisticsAggregationDescriptor)
{
super(id);
requireNonNull(columns, "columns is null");
requireNonNull(columnNames, "columnNames is null");
checkArgument(columns.size() == columnNames.size(), "columns and columnNames sizes don't match");
this.source = requireNonNull(source, "source is null");
this.target = requireNonNull(target, "target is null");
this.rowCountSymbol = requireNonNull(rowCountSymbol, "rowCountSymbol is null");
this.fragmentSymbol = requireNonNull(fragmentSymbol, "fragmentSymbol is null");
this.columns = ImmutableList.copyOf(columns);
this.columnNames = ImmutableList.copyOf(columnNames);
this.partitioningScheme = requireNonNull(partitioningScheme, "partitioningScheme is null");
this.statisticsAggregation = requireNonNull(statisticsAggregation, "statisticsAggregation is null");
this.statisticsAggregationDescriptor = requireNonNull(statisticsAggregationDescriptor, "statisticsAggregationDescriptor is null");
checkArgument(statisticsAggregation.isPresent() == statisticsAggregationDescriptor.isPresent(), "statisticsAggregation and statisticsAggregationDescriptor must be either present or absent");
ImmutableList.Builder outputs = ImmutableList.builder()
.add(rowCountSymbol)
.add(fragmentSymbol);
statisticsAggregation.ifPresent(aggregation -> {
outputs.addAll(aggregation.getGroupingSymbols());
outputs.addAll(aggregation.getAggregations().keySet());
});
this.outputs = outputs.build();
}
@JsonProperty
public PlanNode getSource()
{
return source;
}
@JsonProperty
public WriterTarget getTarget()
{
return target;
}
@JsonProperty
public Symbol getRowCountSymbol()
{
return rowCountSymbol;
}
@JsonProperty
public Symbol getFragmentSymbol()
{
return fragmentSymbol;
}
@JsonProperty
public List getColumns()
{
return columns;
}
@JsonProperty
public List getColumnNames()
{
return columnNames;
}
@JsonProperty
public Optional getPartitioningScheme()
{
return partitioningScheme;
}
@JsonProperty
public Optional getStatisticsAggregation()
{
return statisticsAggregation;
}
@JsonProperty
public Optional> getStatisticsAggregationDescriptor()
{
return statisticsAggregationDescriptor;
}
@Override
public List getSources()
{
return ImmutableList.of(source);
}
@Override
public List getOutputSymbols()
{
return outputs;
}
@Override
public R accept(PlanVisitor visitor, C context)
{
return visitor.visitTableWriter(this, context);
}
@Override
public PlanNode replaceChildren(List newChildren)
{
return new TableWriterNode(getId(), Iterables.getOnlyElement(newChildren), target, rowCountSymbol, fragmentSymbol, columns, columnNames, partitioningScheme, statisticsAggregation, statisticsAggregationDescriptor);
}
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, property = "@type")
@JsonSubTypes({
@JsonSubTypes.Type(value = CreateTarget.class, name = "CreateTarget"),
@JsonSubTypes.Type(value = InsertTarget.class, name = "InsertTarget"),
@JsonSubTypes.Type(value = MergeTarget.class, name = "MergeTarget"),
@JsonSubTypes.Type(value = RefreshMaterializedViewTarget.class, name = "RefreshMaterializedViewTarget"),
@JsonSubTypes.Type(value = TableExecuteTarget.class, name = "TableExecuteTarget"),
})
@SuppressWarnings({"EmptyClass", "ClassMayBeInterface"})
public abstract static class WriterTarget
{
@Override
public abstract String toString();
public abstract boolean supportsMultipleWritersPerPartition(Metadata metadata, Session session);
public abstract OptionalInt getMaxWriterTasks(Metadata metadata, Session session);
public abstract WriterScalingOptions getWriterScalingOptions(Metadata metadata, Session session);
}
// only used during planning -- will not be serialized
public static class CreateReference
extends WriterTarget
{
private final String catalog;
private final ConnectorTableMetadata tableMetadata;
private final Optional layout;
private final boolean replace;
public CreateReference(String catalog, ConnectorTableMetadata tableMetadata, Optional layout, boolean replace)
{
this.catalog = requireNonNull(catalog, "catalog is null");
this.tableMetadata = requireNonNull(tableMetadata, "tableMetadata is null");
this.layout = requireNonNull(layout, "layout is null");
this.replace = replace;
}
public String getCatalog()
{
return catalog;
}
@Override
public boolean supportsMultipleWritersPerPartition(Metadata metadata, Session session)
{
return layout.map(tableLayout -> tableLayout.getLayout().supportsMultipleWritersPerPartition()).orElse(true);
}
@Override
public OptionalInt getMaxWriterTasks(Metadata metadata, Session session)
{
return metadata.getMaxWriterTasks(session, catalog);
}
@Override
public WriterScalingOptions getWriterScalingOptions(Metadata metadata, Session session)
{
QualifiedObjectName tableName = new QualifiedObjectName(
catalog,
tableMetadata.getTableSchema().getTable().getSchemaName(),
tableMetadata.getTableSchema().getTable().getTableName());
return metadata.getNewTableWriterScalingOptions(session, tableName, tableMetadata.getProperties());
}
public Optional getLayout()
{
return layout;
}
public ConnectorTableMetadata getTableMetadata()
{
return tableMetadata;
}
public boolean isReplace()
{
return replace;
}
@Override
public String toString()
{
return catalog + "." + tableMetadata.getTable();
}
}
public static class CreateTarget
extends WriterTarget
{
private final OutputTableHandle handle;
private final SchemaTableName schemaTableName;
private final boolean multipleWritersPerPartitionSupported;
private final OptionalInt maxWriterTasks;
private final WriterScalingOptions writerScalingOptions;
private final boolean replace;
@JsonCreator
public CreateTarget(
@JsonProperty("handle") OutputTableHandle handle,
@JsonProperty("schemaTableName") SchemaTableName schemaTableName,
@JsonProperty("multipleWritersPerPartitionSupported") boolean multipleWritersPerPartitionSupported,
@JsonProperty("maxWriterTasks") OptionalInt maxWriterTasks,
@JsonProperty("writerScalingOptions") WriterScalingOptions writerScalingOptions,
@JsonProperty("replace") boolean replace)
{
this.handle = requireNonNull(handle, "handle is null");
this.schemaTableName = requireNonNull(schemaTableName, "schemaTableName is null");
this.multipleWritersPerPartitionSupported = multipleWritersPerPartitionSupported;
this.maxWriterTasks = requireNonNull(maxWriterTasks, "maxWriterTasks is null");
this.writerScalingOptions = requireNonNull(writerScalingOptions, "writerScalingOptions is null");
this.replace = replace;
}
@JsonProperty
public OutputTableHandle getHandle()
{
return handle;
}
@JsonProperty
public SchemaTableName getSchemaTableName()
{
return schemaTableName;
}
@JsonProperty
public boolean isMultipleWritersPerPartitionSupported()
{
return multipleWritersPerPartitionSupported;
}
@JsonProperty
public WriterScalingOptions getWriterScalingOptions()
{
return writerScalingOptions;
}
@JsonProperty
public boolean isReplace()
{
return replace;
}
@Override
public String toString()
{
return handle.toString();
}
@Override
public boolean supportsMultipleWritersPerPartition(Metadata metadata, Session session)
{
return multipleWritersPerPartitionSupported;
}
@Override
public OptionalInt getMaxWriterTasks(Metadata metadata, Session session)
{
return maxWriterTasks;
}
@Override
public WriterScalingOptions getWriterScalingOptions(Metadata metadata, Session session)
{
return writerScalingOptions;
}
}
// only used during planning -- will not be serialized
public static class InsertReference
extends WriterTarget
{
private final TableHandle handle;
private final List columns;
public InsertReference(TableHandle handle, List columns)
{
this.handle = requireNonNull(handle, "handle is null");
this.columns = ImmutableList.copyOf(requireNonNull(columns, "columns is null"));
}
public TableHandle getHandle()
{
return handle;
}
public List getColumns()
{
return columns;
}
@Override
public String toString()
{
return handle.toString();
}
@Override
public boolean supportsMultipleWritersPerPartition(Metadata metadata, Session session)
{
return metadata.getInsertLayout(session, handle)
.map(layout -> layout.getLayout().supportsMultipleWritersPerPartition())
.orElse(true);
}
@Override
public OptionalInt getMaxWriterTasks(Metadata metadata, Session session)
{
return metadata.getMaxWriterTasks(session, handle.getCatalogHandle().getCatalogName());
}
@Override
public WriterScalingOptions getWriterScalingOptions(Metadata metadata, Session session)
{
return metadata.getInsertWriterScalingOptions(session, handle);
}
}
public static class InsertTarget
extends WriterTarget
{
private final InsertTableHandle handle;
private final SchemaTableName schemaTableName;
private final boolean multipleWritersPerPartitionSupported;
private final OptionalInt maxWriterTasks;
private final WriterScalingOptions writerScalingOptions;
@JsonCreator
public InsertTarget(
@JsonProperty("handle") InsertTableHandle handle,
@JsonProperty("schemaTableName") SchemaTableName schemaTableName,
@JsonProperty("multipleWritersPerPartitionSupported") boolean multipleWritersPerPartitionSupported,
@JsonProperty("maxWriterTasks") OptionalInt maxWriterTasks,
@JsonProperty("writerScalingOptions") WriterScalingOptions writerScalingOptions)
{
this.handle = requireNonNull(handle, "handle is null");
this.schemaTableName = requireNonNull(schemaTableName, "schemaTableName is null");
this.multipleWritersPerPartitionSupported = multipleWritersPerPartitionSupported;
this.maxWriterTasks = requireNonNull(maxWriterTasks, "maxWriterTasks is null");
this.writerScalingOptions = requireNonNull(writerScalingOptions, "writerScalingOptions is null");
}
@JsonProperty
public InsertTableHandle getHandle()
{
return handle;
}
@JsonProperty
public SchemaTableName getSchemaTableName()
{
return schemaTableName;
}
@JsonProperty
public boolean isMultipleWritersPerPartitionSupported()
{
return multipleWritersPerPartitionSupported;
}
@JsonProperty
public WriterScalingOptions getWriterScalingOptions()
{
return writerScalingOptions;
}
@Override
public String toString()
{
return handle.toString();
}
@Override
public boolean supportsMultipleWritersPerPartition(Metadata metadata, Session session)
{
return multipleWritersPerPartitionSupported;
}
@Override
public OptionalInt getMaxWriterTasks(Metadata metadata, Session session)
{
return maxWriterTasks;
}
@Override
public WriterScalingOptions getWriterScalingOptions(Metadata metadata, Session session)
{
return writerScalingOptions;
}
}
public static class RefreshMaterializedViewReference
extends WriterTarget
{
private final String table;
private final TableHandle storageTableHandle;
private final List sourceTableHandles;
public RefreshMaterializedViewReference(String table, TableHandle storageTableHandle, List sourceTableHandles)
{
this.table = requireNonNull(table, "table is null");
this.storageTableHandle = requireNonNull(storageTableHandle, "storageTableHandle is null");
this.sourceTableHandles = ImmutableList.copyOf(sourceTableHandles);
}
public TableHandle getStorageTableHandle()
{
return storageTableHandle;
}
public List getSourceTableHandles()
{
return sourceTableHandles;
}
@Override
public String toString()
{
return table;
}
@Override
public boolean supportsMultipleWritersPerPartition(Metadata metadata, Session session)
{
return metadata.getInsertLayout(session, storageTableHandle)
.map(layout -> layout.getLayout().supportsMultipleWritersPerPartition())
.orElse(true);
}
@Override
public OptionalInt getMaxWriterTasks(Metadata metadata, Session session)
{
return metadata.getMaxWriterTasks(session, storageTableHandle.getCatalogHandle().getCatalogName());
}
@Override
public WriterScalingOptions getWriterScalingOptions(Metadata metadata, Session session)
{
return metadata.getInsertWriterScalingOptions(session, storageTableHandle);
}
}
public static class RefreshMaterializedViewTarget
extends WriterTarget
{
private final TableHandle tableHandle;
private final InsertTableHandle insertHandle;
private final SchemaTableName schemaTableName;
private final List sourceTableHandles;
private final WriterScalingOptions writerScalingOptions;
@JsonCreator
public RefreshMaterializedViewTarget(
@JsonProperty("tableHandle") TableHandle tableHandle,
@JsonProperty("insertHandle") InsertTableHandle insertHandle,
@JsonProperty("schemaTableName") SchemaTableName schemaTableName,
@JsonProperty("sourceTableHandles") List sourceTableHandles,
@JsonProperty("writerScalingOptions") WriterScalingOptions writerScalingOptions)
{
this.tableHandle = requireNonNull(tableHandle, "tableHandle is null");
this.insertHandle = requireNonNull(insertHandle, "insertHandle is null");
this.schemaTableName = requireNonNull(schemaTableName, "schemaTableName is null");
this.sourceTableHandles = ImmutableList.copyOf(sourceTableHandles);
this.writerScalingOptions = requireNonNull(writerScalingOptions, "writerScalingOptions is null");
}
@JsonProperty
public TableHandle getTableHandle()
{
return tableHandle;
}
@JsonProperty
public InsertTableHandle getInsertHandle()
{
return insertHandle;
}
@JsonProperty
public SchemaTableName getSchemaTableName()
{
return schemaTableName;
}
@JsonProperty
public List getSourceTableHandles()
{
return sourceTableHandles;
}
@JsonProperty
public WriterScalingOptions getWriterScalingOptions()
{
return writerScalingOptions;
}
@Override
public String toString()
{
return insertHandle.toString();
}
@Override
public boolean supportsMultipleWritersPerPartition(Metadata metadata, Session session)
{
return metadata.getInsertLayout(session, tableHandle)
.map(layout -> layout.getLayout().supportsMultipleWritersPerPartition())
.orElse(true);
}
@Override
public OptionalInt getMaxWriterTasks(Metadata metadata, Session session)
{
return metadata.getMaxWriterTasks(session, tableHandle.getCatalogHandle().getCatalogName());
}
@Override
public WriterScalingOptions getWriterScalingOptions(Metadata metadata, Session session)
{
return writerScalingOptions;
}
}
public static class DeleteTarget
extends WriterTarget
{
private final Optional handle;
private final SchemaTableName schemaTableName;
@JsonCreator
public DeleteTarget(
@JsonProperty("handle") Optional handle,
@JsonProperty("schemaTableName") SchemaTableName schemaTableName)
{
this.handle = requireNonNull(handle, "handle is null");
this.schemaTableName = requireNonNull(schemaTableName, "schemaTableName is null");
}
@JsonProperty
public Optional getHandle()
{
return handle;
}
@JsonIgnore
public TableHandle getHandleOrElseThrow()
{
return handle.orElseThrow(() -> new IllegalStateException("DeleteTarget does not contain handle"));
}
@JsonProperty
public SchemaTableName getSchemaTableName()
{
return schemaTableName;
}
@Override
public String toString()
{
return handle.map(Object::toString).orElse("[]");
}
@Override
public boolean supportsMultipleWritersPerPartition(Metadata metadata, Session session)
{
throw new UnsupportedOperationException();
}
@Override
public OptionalInt getMaxWriterTasks(Metadata metadata, Session session)
{
throw new UnsupportedOperationException();
}
@Override
public WriterScalingOptions getWriterScalingOptions(Metadata metadata, Session session)
{
throw new UnsupportedOperationException();
}
}
public static class UpdateTarget
extends WriterTarget
{
private final Optional handle;
private final SchemaTableName schemaTableName;
private final List updatedColumns;
private final List updatedColumnHandles;
@JsonCreator
public UpdateTarget(
@JsonProperty("handle") Optional handle,
@JsonProperty("schemaTableName") SchemaTableName schemaTableName,
@JsonProperty("updatedColumns") List updatedColumns,
@JsonProperty("updatedColumnHandles") List updatedColumnHandles)
{
this.handle = requireNonNull(handle, "handle is null");
this.schemaTableName = requireNonNull(schemaTableName, "schemaTableName is null");
checkArgument(updatedColumns.size() == updatedColumnHandles.size(), "updatedColumns size %s must equal updatedColumnHandles size %s", updatedColumns.size(), updatedColumnHandles.size());
this.updatedColumns = requireNonNull(updatedColumns, "updatedColumns is null");
this.updatedColumnHandles = requireNonNull(updatedColumnHandles, "updatedColumnHandles is null");
}
@JsonProperty
public Optional getHandle()
{
return handle;
}
@JsonIgnore
public TableHandle getHandleOrElseThrow()
{
return handle.orElseThrow(() -> new IllegalStateException("UpdateTarge does not contain handle"));
}
@JsonProperty
public SchemaTableName getSchemaTableName()
{
return schemaTableName;
}
@JsonProperty
public List getUpdatedColumns()
{
return updatedColumns;
}
@JsonProperty
public List getUpdatedColumnHandles()
{
return updatedColumnHandles;
}
@Override
public String toString()
{
return handle.map(Object::toString).orElse("[]");
}
@Override
public boolean supportsMultipleWritersPerPartition(Metadata metadata, Session session)
{
throw new UnsupportedOperationException();
}
@Override
public OptionalInt getMaxWriterTasks(Metadata metadata, Session session)
{
throw new UnsupportedOperationException();
}
@Override
public WriterScalingOptions getWriterScalingOptions(Metadata metadata, Session session)
{
throw new UnsupportedOperationException();
}
}
public static class TableExecuteTarget
extends WriterTarget
{
private final TableExecuteHandle executeHandle;
private final Optional sourceHandle;
private final SchemaTableName schemaTableName;
private final WriterScalingOptions writerScalingOptions;
@JsonCreator
public TableExecuteTarget(
@JsonProperty("executeHandle") TableExecuteHandle executeHandle,
@JsonProperty("sourceHandle") Optional sourceHandle,
@JsonProperty("schemaTableName") SchemaTableName schemaTableName,
@JsonProperty("writerScalingOptions") WriterScalingOptions writerScalingOptions)
{
this.executeHandle = requireNonNull(executeHandle, "handle is null");
this.sourceHandle = requireNonNull(sourceHandle, "sourceHandle is null");
this.schemaTableName = requireNonNull(schemaTableName, "schemaTableName is null");
this.writerScalingOptions = requireNonNull(writerScalingOptions, "writerScalingOptions is null");
}
@JsonProperty
public TableExecuteHandle getExecuteHandle()
{
return executeHandle;
}
@JsonProperty
public Optional getSourceHandle()
{
return sourceHandle;
}
public TableHandle getMandatorySourceHandle()
{
return sourceHandle.orElseThrow();
}
@JsonProperty
public SchemaTableName getSchemaTableName()
{
return schemaTableName;
}
@JsonProperty
public WriterScalingOptions getWriterScalingOptions()
{
return writerScalingOptions;
}
@Override
public String toString()
{
return executeHandle.toString();
}
@Override
public boolean supportsMultipleWritersPerPartition(Metadata metadata, Session session)
{
return metadata.getLayoutForTableExecute(session, executeHandle)
.map(layout -> layout.getLayout().supportsMultipleWritersPerPartition())
.orElse(true);
}
@Override
public OptionalInt getMaxWriterTasks(Metadata metadata, Session session)
{
return metadata.getMaxWriterTasks(session, executeHandle.getCatalogHandle().getCatalogName());
}
@Override
public WriterScalingOptions getWriterScalingOptions(Metadata metadata, Session session)
{
return writerScalingOptions;
}
}
public static class MergeTarget
extends WriterTarget
{
private final TableHandle handle;
private final Optional mergeHandle;
private final SchemaTableName schemaTableName;
private final MergeParadigmAndTypes mergeParadigmAndTypes;
@JsonCreator
public MergeTarget(
@JsonProperty("handle") TableHandle handle,
@JsonProperty("mergeHandle") Optional mergeHandle,
@JsonProperty("schemaTableName") SchemaTableName schemaTableName,
@JsonProperty("mergeParadigmAndTypes") MergeParadigmAndTypes mergeParadigmAndTypes)
{
this.handle = requireNonNull(handle, "handle is null");
this.mergeHandle = requireNonNull(mergeHandle, "mergeHandle is null");
this.schemaTableName = requireNonNull(schemaTableName, "schemaTableName is null");
this.mergeParadigmAndTypes = requireNonNull(mergeParadigmAndTypes, "mergeElements is null");
}
@JsonProperty
public TableHandle getHandle()
{
return handle;
}
@JsonProperty
public Optional getMergeHandle()
{
return mergeHandle;
}
@JsonProperty
public SchemaTableName getSchemaTableName()
{
return schemaTableName;
}
@JsonProperty
public MergeParadigmAndTypes getMergeParadigmAndTypes()
{
return mergeParadigmAndTypes;
}
@Override
public String toString()
{
return handle.toString();
}
@Override
public boolean supportsMultipleWritersPerPartition(Metadata metadata, Session session)
{
return false;
}
@Override
public OptionalInt getMaxWriterTasks(Metadata metadata, Session session)
{
return OptionalInt.empty();
}
@Override
public WriterScalingOptions getWriterScalingOptions(Metadata metadata, Session session)
{
return WriterScalingOptions.DISABLED;
}
}
public static class MergeParadigmAndTypes
{
private final Optional paradigm;
private final List columnTypes;
private final List columnNames;
private final Type rowIdType;
@JsonCreator
public MergeParadigmAndTypes(
@JsonProperty("paradigm") Optional paradigm,
@JsonProperty("columnTypes") List columnTypes,
@JsonProperty("columnNames") List columnNames,
@JsonProperty("rowIdType") Type rowIdType)
{
this.paradigm = requireNonNull(paradigm, "paradigm is null");
this.columnTypes = requireNonNull(columnTypes, "columnTypes is null");
this.columnNames = requireNonNull(columnNames, "columnNames is null");
this.rowIdType = requireNonNull(rowIdType, "rowIdType is null");
}
@JsonProperty
public Optional getParadigm()
{
return paradigm;
}
@JsonProperty
public List getColumnTypes()
{
return columnTypes;
}
@JsonProperty
public List getColumnNames()
{
return columnNames;
}
@JsonProperty
public Type getRowIdType()
{
return rowIdType;
}
}
}