sql_yacc.yy, sp.result, disabled.def:

  Post-merge fix.
parent c14d3d2f
...@@ -6431,7 +6431,7 @@ select 1; ...@@ -6431,7 +6431,7 @@ select 1;
select 3; select 3;
select 4; select 4;
end utf8 utf8_general_ci latin1_swedish_ci end latin1 latin1_swedish_ci latin1_swedish_ci
call proc_25411_a(); call proc_25411_a();
1 1
1 1
...@@ -6451,7 +6451,7 @@ proc_25411_b CREATE DEFINER=`root`@`localhost` PROCEDURE `proc_25411_b`( ...@@ -6451,7 +6451,7 @@ proc_25411_b CREATE DEFINER=`root`@`localhost` PROCEDURE `proc_25411_b`(
) )
begin begin
select p1, p2; select p1, p2;
end utf8 utf8_general_ci latin1_swedish_ci end latin1 latin1_swedish_ci latin1_swedish_ci
select name, param_list, body from mysql.proc where name like "%25411%"; select name, param_list, body from mysql.proc where name like "%25411%";
name param_list body name param_list body
proc_25411_a begin proc_25411_a begin
...@@ -6489,7 +6489,7 @@ select 1 ,2 ,3; ...@@ -6489,7 +6489,7 @@ select 1 ,2 ,3;
select 1,2 ,3 ; select 1,2 ,3 ;
select 1 ,2 ,3 ; select 1 ,2 ,3 ;
select 1 ,2 ,3 ; select 1 ,2 ,3 ;
end utf8 utf8_general_ci latin1_swedish_ci end latin1 latin1_swedish_ci latin1_swedish_ci
call proc_25411_c(); call proc_25411_c();
1 2 3 1 2 3
1 2 3 1 2 3
...@@ -6510,7 +6510,7 @@ select 1 /* testing */; ...@@ -6510,7 +6510,7 @@ select 1 /* testing */;
show create procedure proc_26302; show create procedure proc_26302;
Procedure sql_mode Create Procedure character_set_client collation_connection Database Collation Procedure sql_mode Create Procedure character_set_client collation_connection Database Collation
proc_26302 CREATE DEFINER=`root`@`localhost` PROCEDURE `proc_26302`() proc_26302 CREATE DEFINER=`root`@`localhost` PROCEDURE `proc_26302`()
select 1 /* testing */ utf8 utf8_general_ci latin1_swedish_ci select 1 /* testing */ latin1 latin1_swedish_ci latin1_swedish_ci
select ROUTINE_NAME, ROUTINE_DEFINITION from information_schema.ROUTINES select ROUTINE_NAME, ROUTINE_DEFINITION from information_schema.ROUTINES
where ROUTINE_NAME = "proc_26302"; where ROUTINE_NAME = "proc_26302";
ROUTINE_NAME ROUTINE_DEFINITION ROUTINE_NAME ROUTINE_DEFINITION
......
...@@ -25,4 +25,3 @@ ctype_big5 : BUG#26711 2007-06-21 Lars Test has never worked on Do ...@@ -25,4 +25,3 @@ ctype_big5 : BUG#26711 2007-06-21 Lars Test has never worked on Do
mysql_upgrade : Bug#28560 test links to /usr/local/mysql/lib libraries, causes non-determinism and failures on ABI breakage mysql_upgrade : Bug#28560 test links to /usr/local/mysql/lib libraries, causes non-determinism and failures on ABI breakage
federated_transactions : Bug#29523 Transactions do not work federated_transactions : Bug#29523 Transactions do not work
ddl_i18n_koi8r : Bug #30120 SP with local variables with non-ASCII names crashes server
...@@ -9506,7 +9506,7 @@ simple_ident: ...@@ -9506,7 +9506,7 @@ simple_ident:
splocal= new Item_splocal($1, spv->offset, spv->type, splocal= new Item_splocal($1, spv->offset, spv->type,
lip->get_tok_start_prev() - lip->get_tok_start_prev() -
lex->sphead->m_tmp_query, lex->sphead->m_tmp_query,
lip->tok_end - lip->tok_start_prev); lip->get_tok_end() - lip->get_tok_start_prev());
#ifndef DBUG_OFF #ifndef DBUG_OFF
if (splocal) if (splocal)
splocal->m_sp= lex->sphead; splocal->m_sp= lex->sphead;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment