TableHiveOptions

data class TableHiveOptions(val parameters: Map<String, String>? = null, val storageDescriptor: TableHiveOptionsStorageDescriptor? = null, val tableType: String? = null)

Constructors

Link copied to clipboard
constructor(parameters: Map<String, String>? = null, storageDescriptor: TableHiveOptionsStorageDescriptor? = null, tableType: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val parameters: Map<String, String>? = null

Stores user supplied Hive table parameters. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

Link copied to clipboard

Stores physical storage information on the data. Structure is documented below.

Link copied to clipboard
val tableType: String? = null

Hive table type. For example, MANAGED_TABLE, EXTERNAL_TABLE.