ArrayDimension

data class ArrayDimension(val size: Int, val lowerBound: Int)

Represents a single dimension of a PostgreSQL array.

Constructors

Link copied to clipboard
constructor(size: Int, lowerBound: Int)

Properties

Link copied to clipboard

The starting index of this dimension (usually 1 in PostgreSQL).

Link copied to clipboard
val size: Int

The number of elements in this dimension.