From f1df8b8d26d2a6202e8d6da9d94c19c4a457d2fc Mon Sep 17 00:00:00 2001 From: Roman Lomonosov Date: Fri, 12 Jul 2019 19:20:21 +0300 Subject: [PATCH] fix not match expression --- finder/tagged.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/finder/tagged.go b/finder/tagged.go index 2ddca450e..f320524c8 100644 --- a/finder/tagged.go +++ b/finder/tagged.go @@ -88,7 +88,7 @@ func TaggedTermWhere1(term *TaggedTerm) string { case TaggedTermMatch: return where.Match("Tag1", term.concat()) case TaggedTermNotMatch: - return fmt.Sprintf("NOT arrayExists((x) -> %s), Tags)", where.Match("x", term.concat())) + return fmt.Sprintf("NOT arrayExists((x) -> %s, Tags)", where.Match("x", term.concat())) default: return "" }