connectivity/source/parse/sqlbison.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 967039703c73a9efc225d0d4d9c1f3a168977a46 Author: Lionel Elie Mamane <[email protected]> Date: Mon Aug 18 22:22:22 2014 +0200 fdo#82427 disambiguate "NOT LIKE 'foo'" Change-Id: Iab383639ea73cc87c03f4f42433bc9ccfcd988ef Reviewed-on: https://gerrit.libreoffice.org/11010 Reviewed-by: David Tardon <[email protected]> Tested-by: David Tardon <[email protected]> diff --git a/connectivity/source/parse/sqlbison.y b/connectivity/source/parse/sqlbison.y index 0a3772f..a750541 100644 --- a/connectivity/source/parse/sqlbison.y +++ b/connectivity/source/parse/sqlbison.y @@ -1126,8 +1126,8 @@ parenthesized_boolean_value_expression: } ; boolean_factor: - boolean_primary - | SQL_TOKEN_NOT boolean_primary + boolean_primary %dprec 2 + | SQL_TOKEN_NOT boolean_primary %dprec 1 { // boolean_factor: rule 1 $$ = SQL_NEW_RULE; $$->append($1); _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
