RawTableOption

Generic table option for database-specific settings not covered by specific option types.

Use this for vendor-specific options that don't have a dedicated option class.

Example:

object Users : Table("users") {
override val options = listOf(Table.RawTableOption("ROW_FORMAT=COMPRESSED"))
}

Constructors

Link copied to clipboard
constructor(sql: String)

Functions

Link copied to clipboard
open override fun toSQL(): String

Returns the SQL string representation of this option.

Link copied to clipboard
open override fun toString(): String