English | 简体中文

api-docs / org.ktorm.support.postgresql / Cube

Cube

data class Cube (source code)

Represents a box suitable for an indexed search using the cube @> operator.
Part of PostgreSQL cube SQL extension.
https://www.postgresql.org/docs/9.5/cube.html

Constructors

NameSummary

<init>

Cube(x: DoubleArray, y: DoubleArray)

Represents a box suitable for an indexed search using the cube @> operator.
Part of PostgreSQL cube SQL extension.
https://www.postgresql.org/docs/9.5/cube.html

Properties

NameSummary

x

y

Functions

NameSummary

equals

fun equals(other: Any?): Boolean

hashCode

fun hashCode(): Int

toString

fun toString(): String

Extension Functions

NameSummary

eq

infix fun <T : Any> T.eq(
    expr: ColumnDeclaring<T>
): BinaryExpression<Boolean>

Equal operator, translated to = in SQL.

neq

infix fun <T : Any> T.neq(
    expr: ColumnDeclaring<T>
): BinaryExpression<Boolean>

Not-equal operator, translated to <> in SQL.

notEq

infix fun <T : Any> T.notEq(
    expr: ColumnDeclaring<T>
): BinaryExpression<Boolean>

Not-equal operator, translated to <> in SQL.