Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 16c0823c authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Allow empty tokens in strict grammar" into rvc-qpr-dev am: 5dd3cded

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/12205025

Change-Id: I7a2f918920faa775a8ef341711b2182bdfad4630
parents 9cda1e19 5dd3cded
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -798,6 +798,7 @@ public class SQLiteQueryBuilder {
    }

    private void enforceStrictToken(@NonNull String token) {
        if (TextUtils.isEmpty(token)) return;
        if (isTableOrColumn(token)) return;
        if (SQLiteTokenizer.isFunction(token)) return;
        if (SQLiteTokenizer.isType(token)) return;