parser/parser.y: S/R conflicts 11->10.

This commit is contained in:
Jan Mercl
2015-09-10 14:45:19 +02:00
parent e644d9b406
commit 0b06ec79ae

View File

@ -465,6 +465,9 @@ import (
%token tableRefPriority
%precedence lowerThanCalcFoundRows
%precedence calcFoundRows
%left join inner cross left right full
/* A dummy token to force the priority of TableRef production in a join. */
%left tableRefPriority
@ -2417,6 +2420,7 @@ SelectStmtOpts:
}
SelectStmtCalcFoundRows:
%prec lowerThanCalcFoundRows
{
$$ = false
}