[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - connectivity/source
Lionel Elie Mamane
lionel at mamane.lu
Wed Aug 20 01:32:30 PDT 2014
connectivity/source/parse/sqlbison.y | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 967039703c73a9efc225d0d4d9c1f3a168977a46
Author: Lionel Elie Mamane <lionel at mamane.lu>
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 <dtardon at redhat.com>
Tested-by: David Tardon <dtardon at redhat.com>
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);
More information about the Libreoffice-commits
mailing list