aboutsummaryrefslogtreecommitdiff
path: root/lib/expression/t.ml
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2024-12-26 21:22:23 +0100
committerSébastien Dailly <sebastien@dailly.me>2024-12-26 21:22:23 +0100
commitf5332b2c7bbf6128de5f2467560e808d8d8d41f3 (patch)
tree525e5f94604d30dff69469d9b88daadb202ea8ad /lib/expression/t.ml
parent39f39919fb4749787393e95503f9814912265a73 (diff)
Added a cmp function
Diffstat (limited to 'lib/expression/t.ml')
-rw-r--r--lib/expression/t.ml4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/expression/t.ml b/lib/expression/t.ml
index 7e61317..2df374f 100644
--- a/lib/expression/t.ml
+++ b/lib/expression/t.ml
@@ -34,12 +34,14 @@ and binary_operator =
| Or
and funct =
- | Upper
+ | Cmp
| Trim
+ | Upper
let name_of_function = function
| Upper -> "UPPER"
| Trim -> "TRIM"
+ | Cmp -> "CMP"
let name_of_operator = function
| Equal -> "="