FunSQL.jl
FunSQL.jl copied to clipboard
smarter Or
I find that I have to write the following for Or to be useful.
function build_or(items...)
if length(items) == 0
return @funsql(false)
end
if length(items) == 1
return items[1]
end
return @funsql(or($items...))
end