From ab9a9ff7ad45afedb2286d958e2126ab8ff33dd6 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 8 Aug 2016 17:47:30 +0200 Subject: Recognize WITH as beginning of complete query --- odb/sqlite/query.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'odb/sqlite/query.cxx') diff --git a/odb/sqlite/query.cxx b/odb/sqlite/query.cxx index a1bc5ac..04ae043 100644 --- a/odb/sqlite/query.cxx +++ b/odb/sqlite/query.cxx @@ -208,7 +208,9 @@ namespace odb s.compare (0, (n = 8), "GROUP BY") == 0 || s.compare (0, (n = 8), "group by") == 0 || s.compare (0, (n = 6), "HAVING") == 0 || - s.compare (0, (n = 6), "having") == 0) + s.compare (0, (n = 6), "having") == 0 || + s.compare (0, (n = 4), "WITH") == 0 || + s.compare (0, (n = 4), "with") == 0) { // It either has to be an exact match, or there should be // a whitespace following the keyword. -- cgit v1.1