comment out incompatible operations

This commit is contained in:
Levy A.
2025-04-23 08:33:25 -03:00
parent f1ee92bf2d
commit ed27f22e2f

View File

@@ -36,10 +36,10 @@ str_enum! {
// Is => "IS",
// Concat => "||",
// NotEqual => "<>",
GreaterThan => ">",
GreaterThanOrEqual => ">=",
LessThan => "<",
LessThanOrEqual => "<=",
// GreaterThan => ">",
// GreaterThanOrEqual => ">=",
// LessThan => "<",
// LessThanOrEqual => "<=",
RightShift => ">>",
LeftShift => "<<",
BitwiseAnd => "&",