Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
39c77427
Commit
39c77427
authored
Jul 31, 2007
by
gshchepa/uchum@gleb.loc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sql_yacc.yy, sp.result, disabled.def:
Post-merge fix.
parent
c14d3d2f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
6 deletions
+5
-6
mysql-test/r/sp.result
mysql-test/r/sp.result
+4
-4
mysql-test/t/disabled.def
mysql-test/t/disabled.def
+0
-1
sql/sql_yacc.yy
sql/sql_yacc.yy
+1
-1
No files found.
mysql-test/r/sp.result
View file @
39c77427
...
...
@@ -6431,7 +6431,7 @@ select 1;
select 3;
select 4;
end
utf8 utf8_general
_ci latin1_swedish_ci
end
latin1 latin1_swedish
_ci latin1_swedish_ci
call proc_25411_a();
1
1
...
...
@@ -6451,7 +6451,7 @@ proc_25411_b CREATE DEFINER=`root`@`localhost` PROCEDURE `proc_25411_b`(
)
begin
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%";
name param_list body
proc_25411_a begin
...
...
@@ -6489,7 +6489,7 @@ 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();
1 2 3
1 2 3
...
...
@@ -6510,7 +6510,7 @@ select 1 /* testing */;
show create procedure proc_26302;
Procedure sql_mode Create Procedure character_set_client collation_connection Database Collation
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
where ROUTINE_NAME = "proc_26302";
ROUTINE_NAME ROUTINE_DEFINITION
...
...
mysql-test/t/disabled.def
View file @
39c77427
...
...
@@ -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
federated_transactions : Bug#29523 Transactions do not work
ddl_i18n_koi8r : Bug #30120 SP with local variables with non-ASCII names crashes server
sql/sql_yacc.yy
View file @
39c77427
...
...
@@ -9506,7 +9506,7 @@ simple_ident:
splocal= new Item_splocal($1, spv->offset, spv->type,
lip->get_tok_start_prev() -
lex->sphead->m_tmp_query,
lip->
tok_end - lip->tok_start_prev
);
lip->
get_tok_end() - lip->get_tok_start_prev()
);
#ifndef DBUG_OFF
if (splocal)
splocal->m_sp= lex->sphead;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment