Skip to content

Commit

Permalink
Fixed duplicate type parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
takapi327 committed Jan 3, 2025
1 parent 74bd5a5 commit e758b48
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -259,13 +259,13 @@ trait Column[A]:
*
* @param value
* Value to compare
* @tparam A
* @tparam B
* Type of value to compare
* @return
* Query to check whether values are equal in a Where statement.
*/
def IS[A <: "TRUE" | "FALSE" | "UNKNOWN" | "NULL"](value: A): Is[A] =
Is[A](noBagQuotLabel, false, value)
def IS[B <: "TRUE" | "FALSE" | "UNKNOWN" | "NULL"](value: B): Is[B] =
Is[B](noBagQuotLabel, false, value)

def nullSafeEqual(value: Extract[A])(using Encoder[Extract[A]]): NullSafeEqual[A] =
NullSafeEqual[A](noBagQuotLabel, false, value)
Expand Down

0 comments on commit e758b48

Please sign in to comment.