Package io.trino.plugin.deltalake
Class DeltaLakeTableProperties
- java.lang.Object
-
- io.trino.plugin.deltalake.DeltaLakeTableProperties
-
public class DeltaLakeTableProperties extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static StringANALYZE_COLUMNS_PROPERTYstatic StringCHECKPOINT_INTERVAL_PROPERTYstatic StringLOCATION_PROPERTYstatic StringPARTITIONED_BY_PROPERTY
-
Constructor Summary
Constructors Constructor Description DeltaLakeTableProperties()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Optional<Set<String>>getAnalyzeColumns(Map<String,Object> tableProperties)static Optional<Long>getCheckpointInterval(Map<String,Object> tableProperties)static StringgetLocation(Map<String,Object> tableProperties)static List<String>getPartitionedBy(Map<String,Object> tableProperties)List<PropertyMetadata<?>>getTableProperties()
-
-
-
Field Detail
-
LOCATION_PROPERTY
public static final String LOCATION_PROPERTY
- See Also:
- Constant Field Values
-
PARTITIONED_BY_PROPERTY
public static final String PARTITIONED_BY_PROPERTY
- See Also:
- Constant Field Values
-
CHECKPOINT_INTERVAL_PROPERTY
public static final String CHECKPOINT_INTERVAL_PROPERTY
- See Also:
- Constant Field Values
-
ANALYZE_COLUMNS_PROPERTY
public static final String ANALYZE_COLUMNS_PROPERTY
- See Also:
- Constant Field Values
-
-