Skip to content

Commit

Permalink
Adds support for catching type check exceptions in FILTER when permis…
Browse files Browse the repository at this point in the history
…sive
  • Loading branch information
johnedquinn committed Apr 17, 2024
1 parent 41c00fd commit 712deb8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ internal class Compiler(

override fun visitRelOpFilter(node: Rel.Op.Filter, ctx: StaticType?): Operator {
val input = visitRel(node.input, ctx)
val condition = visitRex(node.predicate, ctx)
val condition = visitRex(node.predicate, ctx).modeHandled()
return RelFilter(input, condition)
}

Expand Down

0 comments on commit 712deb8

Please sign in to comment.