We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31ade60 commit 680143fCopy full SHA for 680143f
1 file changed
src/func_to_funsql.jl
@@ -8,6 +8,7 @@ func_to_funsql(f::PropertyLens{P}, ::Nothing) where {P} = getproperty(Get, P)
8
func_to_funsql(f::PropertyLens{P}, arg) where {P} = getproperty(arg, P) # to support Join as input; clash with nested structs?
9
10
func_to_funsql(::typeof(ismissing), arg) = Fun.is_null(arg)
11
+func_to_funsql(::typeof(isnothing), arg) = Fun.is_null(arg)
12
func_to_funsql(f::Base.Fix2{typeof(in), <:Union{Tuple,AbstractVector}}, arg) = Fun.in(arg, f.x...)
13
func_to_funsql(f::Base.Fix2{typeof(∉)}, arg) = func_to_funsql(!∈(f.x), arg)
14
0 commit comments