You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FunSQL requires the <= and >= operators for comparison, as there are no methods defined for ≥ or ≤.
Example:
julia> using FunSQL
julia> @funsql begin
from(person)
filter(1930 ≤ year_of_birth ≤ 1940)
end
ERROR: UndefVarError: `funsql_≤` not defined
Stacktrace:
[1] top-level scope
@ REPL[2]:3
The text was updated successfully, but these errors were encountered:
FunSQL requires the
<=
and>=
operators for comparison, as there are no methods defined for≥
or≤
.Example:
The text was updated successfully, but these errors were encountered: