Skip to content

Commit

Permalink
Added null behavior - empty string to match block
Browse files Browse the repository at this point in the history
Not having it can cause match error.
  • Loading branch information
rdsharma26 committed Mar 8, 2024
1 parent 1195dcf commit 724df47
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,7 @@ object Constraint {
case Some(opts) =>
opts.nullBehavior match {
case NullBehavior.Fail => false
case NullBehavior.Ignore => null
case NullBehavior.Ignore | NullBehavior.EmptyString => null
}
case None => null
}
Expand Down

0 comments on commit 724df47

Please sign in to comment.