DatasetSnowflakeSchemaColumn

data class DatasetSnowflakeSchemaColumn(val name: String, val precision: Int? = null, val scale: Int? = null, val type: String? = null)

Constructors

Link copied to clipboard
constructor(name: String, precision: Int? = null, scale: Int? = null, type: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The name of the column.

Link copied to clipboard
val precision: Int? = null

The total number of digits allowed.

Link copied to clipboard
val scale: Int? = null

The number of digits allowed to the right of the decimal point.

Link copied to clipboard
val type: String? = null

Type of the column. Valid values are NUMBER, DECIMAL, NUMERIC, INT, INTEGER, BIGINT, SMALLINT, FLOAT``FLOAT4, FLOAT8, DOUBLE, DOUBLE PRECISION, REAL, VARCHAR, CHAR, CHARACTER, STRING, TEXT, BINARY, VARBINARY, BOOLEAN, DATE, DATETIME, TIME, TIMESTAMP, TIMESTAMP_LTZ, TIMESTAMP_NTZ, TIMESTAMP_TZ, VARIANT, OBJECT, ARRAY, GEOGRAPHY. Please note these values are case sensitive.