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

Commit 1e303ff4 authored by Hall Liu's avatar Hall Liu Committed by Android (Google) Code Review
Browse files

Merge "Allow empty tokens in strict grammar"

parents 1af337a0 e409ec24
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;