F1001 — unbalanced-parentheses

Error Code: F1001

Message: Parentheses are unbalanced in the query

Scope: all

Typical fix: Check the parentheses in the query

Problematic query:

(a AND b OR c

Correct query:

(a AND b) OR c

Back to: Messages