FillFactorParameter

PostgreSQL fillfactor parameter.

Specifies the percentage of space that table pages should be filled with data. The remaining space is reserved for updates to reduce table bloat.

Valid range: 10-100

Example:

object Users : Table("users") {
override val storageParameters = listOf(Table.FillFactorParameter(70))
}

Generates: fillfactor=70 (used in WITH (fillfactor=70))

Constructors

Link copied to clipboard
constructor(value: Int)

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