From 84bae572d353b03ecb3498df83ba301a456b6c6f Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Thu, 21 Dec 2017 15:18:48 -0500 Subject: Added mask filters and fixed the synonym query refs #1 --- lib/statement.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'lib/statement.cpp') diff --git a/lib/statement.cpp b/lib/statement.cpp index e84a402..5dd3789 100644 --- a/lib/statement.cpp +++ b/lib/statement.cpp @@ -594,6 +594,18 @@ namespace verbly { return grp; } + + case filter::type::mask: + { + condition result = parseFilter(clause.getMaskFilter()); + + if (result.getType() == condition::type::empty) + { + return {}; + } else { + return result; + } + } } } -- cgit 1.4.1