Class BaseTable

java.lang.Object
org.apache.iceberg.BaseTable
All Implemented Interfaces:
Serializable, HasTableOperations, Table

public class BaseTable extends Object implements Table, HasTableOperations, Serializable
Base Table implementation.

This can be extended by providing a TableOperations to the constructor.

Serializing and deserializing a BaseTable object returns a read only implementation of the BaseTable using a StaticTableOperations. This way no Catalog related calls are needed when reading the table data after deserialization.

See Also: