Skip to content

Commit

Permalink
Add definitions for ≢, ≡, ≠, ∉, ∈
Browse files Browse the repository at this point in the history
  • Loading branch information
AshlinHarris committed Jun 25, 2024
1 parent 9d42477 commit 487ee26
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/FunSQL.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ export
var"funsql_!",
var"funsql_==",
var"funsql_!=",
var"funsql_≠",
var"funsql_===",
var"funsql_≡",
var"funsql_!==",
var"funsql_≢",
var"funsql_>",
var"funsql_>=",
var"funsql_≥",
Expand All @@ -21,6 +24,8 @@ export
var"funsql_-",
var"funsql_*",
var"funsql_/",
var"funsql_∈",
var"funsql_∉",
funsql_agg,
funsql_append,
funsql_as,
Expand Down
5 changes: 5 additions & 0 deletions src/nodes/function.jl
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,11 @@ const var"funsql_||" = FunClosure(:or)
const var"funsql_!" = FunClosure(:not)
const var"funsql_==" = FunClosure("=")
const var"funsql_!=" = FunClosure("<>")
const var"funsql_≠" = FunClosure("<>")
const var"funsql_===" = FunClosure(" IS NOT DISTINCT FROM ")
const var"funsql_≡" = FunClosure(" IS NOT DISTINCT FROM ")
const var"funsql_!==" = FunClosure(" IS DISTINCT FROM ")
const var"funsql_≢" = FunClosure(" IS DISTINCT FROM ")
const var"funsql_>" = FunClosure(">")
const var"funsql_>=" = FunClosure(">=")
const var"funsql_≥" = FunClosure(">=")
Expand All @@ -218,6 +221,8 @@ const var"funsql_+" = FunClosure("+")
const var"funsql_-" = FunClosure("-")
const var"funsql_*" = FunClosure("*")
const var"funsql_/" = FunClosure("/")
const var"funsql_∈" = FunClosure(:in)
const var"funsql_∉" = FunClosure(:not_in)
const funsql_between = FunClosure(:between)
const funsql_case = FunClosure(:case)
const funsql_cast = FunClosure(:cast)
Expand Down

0 comments on commit 487ee26

Please sign in to comment.