@Internal public class DefaultCatalogTable extends Object implements CatalogTable
CatalogTable
.CatalogTable.Builder
CatalogBaseTable.TableKind
Modifier | Constructor and Description |
---|---|
protected |
DefaultCatalogTable(Schema schema,
String comment,
List<String> partitionKeys,
Map<String,String> options) |
protected |
DefaultCatalogTable(Schema schema,
String comment,
List<String> partitionKeys,
Map<String,String> options,
Long snapshot,
TableDistribution distribution) |
Modifier and Type | Method and Description |
---|---|
CatalogBaseTable |
copy()
Get a deep copy of the CatalogBaseTable instance.
|
CatalogTable |
copy(Map<String,String> options)
Returns a copy of this
CatalogTable with given table options options . |
boolean |
equals(Object o) |
String |
getComment()
Get comment of the table or view.
|
Optional<String> |
getDescription()
Get a brief description of the table or view.
|
Optional<String> |
getDetailedDescription()
Get a detailed description of the table or view.
|
Optional<TableDistribution> |
getDistribution()
Returns the distribution of the table if the
DISTRIBUTED clause is defined. |
Map<String,String> |
getOptions()
Returns a map of string-based options.
|
List<String> |
getPartitionKeys()
Get the partition keys of the table.
|
Optional<Long> |
getSnapshot()
Return the snapshot specified for the table.
|
Schema |
getUnresolvedSchema()
Returns the schema of the table or view.
|
int |
hashCode() |
boolean |
isPartitioned()
Check if the table is partitioned or not.
|
Map<String,String> |
toProperties()
Serializes this instance into a map of string-based properties.
|
String |
toString() |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
fromProperties, getTableKind, newBuilder, of, of
getSchema
protected DefaultCatalogTable(Schema schema, @Nullable String comment, List<String> partitionKeys, Map<String,String> options)
public Schema getUnresolvedSchema()
CatalogBaseTable
The schema can reference objects from other catalogs and will be resolved and validated by the framework when accessing the table or view.
getUnresolvedSchema
in interface CatalogBaseTable
ResolvedCatalogTable
,
ResolvedCatalogView
public String getComment()
CatalogBaseTable
getComment
in interface CatalogBaseTable
public boolean isPartitioned()
CatalogTable
isPartitioned
in interface CatalogTable
public List<String> getPartitionKeys()
CatalogTable
getPartitionKeys
in interface CatalogTable
public Optional<TableDistribution> getDistribution()
CatalogTable
DISTRIBUTED
clause is defined.getDistribution
in interface CatalogTable
public Map<String,String> getOptions()
CatalogBaseTable
In case of CatalogTable
, these options may determine the kind of connector and its
configuration for accessing the data in the external system. See DynamicTableFactory
for more information. If a CatalogTable
should not be serializable, an implementation
can simply throw a runtime exception in this method.
getOptions
in interface CatalogBaseTable
public Optional<Long> getSnapshot()
CatalogTable
getSnapshot
in interface CatalogTable
public CatalogBaseTable copy()
CatalogBaseTable
copy
in interface CatalogBaseTable
public CatalogTable copy(Map<String,String> options)
CatalogTable
CatalogTable
with given table options options
.copy
in interface CatalogTable
public Optional<String> getDescription()
CatalogBaseTable
getDescription
in interface CatalogBaseTable
public Optional<String> getDetailedDescription()
CatalogBaseTable
getDetailedDescription
in interface CatalogBaseTable
public Map<String,String> toProperties()
CatalogTable
Compared to the pure table options in CatalogBaseTable.getOptions()
, the map includes schema,
partitioning, and other characteristics in a serialized form.
toProperties
in interface CatalogTable
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.