diff --git a/exposed-core/src/main/kotlin/org/jetbrains/exposed/sql/SQLExpressionBuilder.kt b/exposed-core/src/main/kotlin/org/jetbrains/exposed/sql/SQLExpressionBuilder.kt index 58fd1da9ab..1c9b803265 100644 --- a/exposed-core/src/main/kotlin/org/jetbrains/exposed/sql/SQLExpressionBuilder.kt +++ b/exposed-core/src/main/kotlin/org/jetbrains/exposed/sql/SQLExpressionBuilder.kt @@ -263,8 +263,8 @@ interface ISqlExpressionBuilder { } /** Checks if this expression is equal to some [other] [EntityID] expression. */ - infix fun , V : T?, E : EntityID?> Expression.eq( - other: ExpressionWithColumnType + infix fun , V : T?, E : EntityID?> Expression.eq( + other: ExpressionWithColumnType ): Op = other eq this // NOT EQUAL @@ -297,8 +297,8 @@ interface ISqlExpressionBuilder { } /** Checks if this expression is not equal to some [other] [EntityID] expression. */ - infix fun , V : T?, E : EntityID?> Expression.neq( - other: ExpressionWithColumnType + infix fun , V : T?, E : EntityID?> Expression.neq( + other: ExpressionWithColumnType ): Op = other neq this // LESS THAN @@ -320,8 +320,8 @@ interface ISqlExpressionBuilder { ): LessOp = LessOp(this, other) /** Checks if this expression is less than some [other] [EntityID] expression. */ - infix fun , V : T?, E : EntityID?> Expression.less( - other: ExpressionWithColumnType + infix fun , V : T?, E : EntityID?> Expression.less( + other: ExpressionWithColumnType ): LessOp = LessOp(this, other) // LESS THAN OR EQUAL @@ -343,8 +343,8 @@ interface ISqlExpressionBuilder { ): LessEqOp = LessEqOp(this, other) /** Checks if this expression is less than or equal to some [other] [EntityID] expression. */ - infix fun , V : T?, E : EntityID?> Expression.lessEq( - other: ExpressionWithColumnType + infix fun , V : T?, E : EntityID?> Expression.lessEq( + other: ExpressionWithColumnType ): LessEqOp = LessEqOp(this, other) // GREATER THAN @@ -366,8 +366,8 @@ interface ISqlExpressionBuilder { ): GreaterOp = GreaterOp(this, other) /** Checks if this expression is greater than some [other] [EntityID] expression. */ - infix fun , V : T?, E : EntityID?> Expression.greater( - other: ExpressionWithColumnType + infix fun , V : T?, E : EntityID?> Expression.greater( + other: ExpressionWithColumnType ): GreaterOp = GreaterOp(this, other) // GREATER THAN OR EQUAL @@ -389,8 +389,8 @@ interface ISqlExpressionBuilder { ): GreaterEqOp = GreaterEqOp(this, other) /** Checks if this expression is greater than or equal to some [other] [EntityID] expression. */ - infix fun , V : T?, E : EntityID?> Expression.greaterEq( - other: ExpressionWithColumnType + infix fun , V : T?, E : EntityID?> Expression.greaterEq( + other: ExpressionWithColumnType ): GreaterEqOp = GreaterEqOp(this, other) // Comparison Predicates