[Commits] 7419f72: Fixed a compiler warning.
revision-id: 7419f72b7183e40a24cd53a139b78aeaf41503d2 (mariadb-10.2.16-140-g7419f72) parent(s): 7c76f8aa3ae8f8dc75ceb9d5f3d1f2c363908888 author: Igor Babaev committer: Igor Babaev timestamp: 2018-09-15 15:43:08 -0700 message: Fixed a compiler warning. --- sql/sql_yacc.yy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index 6e7128c..67c7578 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -14079,7 +14079,7 @@ with_list_element: if (elem == NULL || Lex->curr_with_clause->add_with_element(elem)) MYSQL_YYABORT; if (elem->set_unparsed_spec(thd, spec_start, $8, - spec_start - query_start)) + (uint) (spec_start - query_start))) MYSQL_YYABORT; } ;
participants (1)
-
IgorBabaev