Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Tests
testAdjustQueryHaving
, testQueryAndHaving
, and `testQu…
…eryOrHaving` resolve wrong `eq` function The tests falsely resolve this `eq` function infix fun <T : Comparable<T>, V : T?, E : EntityID<T>?> Expression<in V>.eq( other: ExpressionWithColumnType<E> ): Op<Boolean> = other eq this instead of this infix fun <T, S1 : T?, S2 : T?> Expression<in S1>.eq(other: Expression<in S2>): Op<Boolean> = when (other as Expression<*>) { is Op.NULL -> isNull() else -> EqOp(this, other) } The same happens when using `neq` instead of `eq`, so that is fixed in this commit too.
- Loading branch information