RawTableStorageParameter

Generic storage parameter for database-specific options not covered by specific parameter types.

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

Example:

object Users : Table("users") {
override val storageParameters = listOf(Table.RawTableStorageParameter("parallel_workers=4"))
}

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 parameter for use in a WITH clause.

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