MechanicalRabbit / FunSQL.jl

Julia library for compositional construction of SQL queries
https://mechanicalrabbit.github.io/FunSQL.jl
Other
144 stars 5 forks source link

No FunSQL definitions for operators ≥ or ≤ #66

Open AshlinHarris opened 1 month ago

AshlinHarris commented 1 month ago

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