From dfd14dd6bf3d251829a8bab13423a0f29a7174b1 Mon Sep 17 00:00:00 2001 From: Denis Smirnov <sd@picodata.io> Date: Tue, 28 Dec 2021 12:17:51 +0700 Subject: [PATCH] fixup: in operator is not =all (not even a =any) --- src/ir/operator.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ir/operator.rs b/src/ir/operator.rs index 80e9bf9ada..b227ff5665 100644 --- a/src/ir/operator.rs +++ b/src/ir/operator.rs @@ -14,8 +14,8 @@ pub enum Bool { And, /// `=` Eq, - /// `=all` (also named `in`) - EqAll, + /// `in` + In, /// `>` Gt, /// `>=` -- GitLab