Merge "People might want GROUP_CONCAT." into qt-dev

am: 668f138c3a

Change-Id: Id79f6eff0a471b79f9f4ceb7886a3927a426f67d
This commit is contained in:
Jeff Sharkey
2019-04-10 14:12:07 -07:00
committed by android-build-merger

View File

@@ -52,7 +52,7 @@ public class SQLiteQueryBuilder {
private static final Pattern sLimitPattern =
Pattern.compile("\\s*\\d+\\s*(,\\s*\\d+\\s*)?");
private static final Pattern sAggregationPattern = Pattern.compile(
"(?i)(AVG|COUNT|MAX|MIN|SUM|TOTAL)\\((.+)\\)");
"(?i)(AVG|COUNT|MAX|MIN|SUM|TOTAL|GROUP_CONCAT)\\((.+)\\)");
private Map<String, String> mProjectionMap = null;
private List<Pattern> mProjectionGreylist = null;