From c7a2430fadb8f06fd7479dc65f6bcdf7178c5ef1 Mon Sep 17 00:00:00 2001 From: teenjuna <53595243+teenjuna@users.noreply.github.com> Date: Fri, 31 Mar 2023 21:19:16 +0700 Subject: [PATCH] Fix typo in `operator.rs` (#1750) --- lib/src/sql/operator.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/sql/operator.rs b/lib/src/sql/operator.rs index 651c5adc..ba1c05a2 100644 --- a/lib/src/sql/operator.rs +++ b/lib/src/sql/operator.rs @@ -94,7 +94,7 @@ impl fmt::Display for Operator { Self::Pow => "**", Self::Inc => "+=", Self::Dec => "-=", - Self::Ext => "+=?", + Self::Ext => "+?=", Self::Equal => "=", Self::Exact => "==", Self::NotEqual => "!=",