arrayLiteral

inline fun <T : Any> arrayLiteral(value: List<T>, delegateType: ColumnType<T>? = null): LiteralOp<List<T>>

Returns the specified value as an array literal, with elements parsed by the delegateType if provided.

Note If delegateType is left null, the associated column type will be resolved according to the internal mapping of the element's type in resolveColumnType.

Throws

If no column type mapping is found and a delegateType is not provided.