[Libreoffice-commits] core.git: connectivity/source

Lionel Elie Mamane lionel at mamane.lu
Sat Jul 19 00:45:57 PDT 2014


 connectivity/source/parse/sqlbison.y |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit 32551a546c83874f08aba9c0adb7a38230fa2e36
Author: Lionel Elie Mamane <lionel at mamane.lu>
Date:   Sat Jul 19 07:45:20 2014 +0200

    fdo#81336 bison priority increase with bigger number
    
    Change-Id: Ib99f08c52379fd9df90c30b61cc246ee53022506
    Reviewed-on: https://gerrit.libreoffice.org/10401
    Reviewed-by: Lionel Elie Mamane <lionel at mamane.lu>
    Tested-by: Lionel Elie Mamane <lionel at mamane.lu>

diff --git a/connectivity/source/parse/sqlbison.y b/connectivity/source/parse/sqlbison.y
index f8d7bec..790f27e 100644
--- a/connectivity/source/parse/sqlbison.y
+++ b/connectivity/source/parse/sqlbison.y
@@ -1153,12 +1153,12 @@ search_condition:
 		}
 	;
 predicate:
-		comparison_predicate     %dprec 2
+		comparison_predicate     %dprec 1
 	|       between_predicate
 	|       all_or_any_predicate
 	|       existence_test
 	|		unique_test
-	|		test_for_null    %dprec 1
+	|		test_for_null    %dprec 2
 	|       in_predicate
 	|       like_predicate
 	;
@@ -3948,11 +3948,11 @@ when_operand_list:
 	;
 when_operand:
 		row_value_constructor_elem
-	|	comparison_predicate_part_2        %dprec 2
+	|	comparison_predicate_part_2        %dprec 1
 	|	between_predicate_part_2
 	|	in_predicate_part_2
 	|	character_like_predicate_part_2
-	|	null_predicate_part_2              %dprec 1
+	|	null_predicate_part_2              %dprec 2
 ;
 searched_when_clause_list:
 		searched_when_clause


More information about the Libreoffice-commits mailing list