Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit 3b803a8

Browse files
committed
Fix match may not be exhaustive error in rendering modules
1 parent 5129b46 commit 3b803a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/jvm/src/main/scala/zio/sql/expr.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ trait ExprModule extends NewtypesModule with FeaturesModule with OpsModule {
136136
def typeTag: TypeTag[B] = typeTagOf(base)
137137
}
138138

139-
sealed case class Property[F, -A, +B](base: Expr[F, A, B], op: PropertyOp) extends InvariantExpr[F, A, Boolean] {
139+
sealed case class Property[F, A, +B](base: Expr[F, A, B], op: PropertyOp) extends InvariantExpr[F, A, Boolean] {
140140
def typeTag: TypeTag[Boolean] = TypeTag.TBoolean
141141
}
142142

0 commit comments

Comments
 (0)