AutovacuumEnabledParameter

PostgreSQL autovacuum_enabled parameter.

Controls whether automatic vacuuming is enabled for this table.

Example:

object LargeTable : Table("large_table") {
override val storageParameters = listOf(Table.AutovacuumEnabledParameter(false))
}

Generates: autovacuum_enabled=false

Constructors

Link copied to clipboard
constructor(enabled: Boolean)

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