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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
9d6860b6
Commit
9d6860b6
authored
Apr 30, 2007
by
malff/marcsql@weblab.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix merge issues
parent
fa807c50
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
mysql-test/r/sp.result
mysql-test/r/sp.result
+7
-0
sql/sql_lex.cc
sql/sql_lex.cc
+1
-1
No files found.
mysql-test/r/sp.result
View file @
9d6860b6
...
...
@@ -6210,6 +6210,13 @@ Warning 1265 Data truncated for column 'bug5274_f1' at row 1
Warning 1265 Data truncated for column 'bug5274_f1' at row 1
DROP FUNCTION bug5274_f1|
DROP FUNCTION bug5274_f2|
drop procedure if exists proc_21513|
create procedure proc_21513()`my_label`:BEGIN END|
show create procedure proc_21513|
Procedure sql_mode Create Procedure
proc_21513 CREATE DEFINER=`root`@`localhost` PROCEDURE `proc_21513`()
`my_label`:BEGIN END
drop procedure proc_21513|
End of 5.0 tests.
drop table t1,t2;
CREATE TABLE t1 (a int auto_increment primary key) engine=MyISAM;
...
...
sql/sql_lex.cc
View file @
9d6860b6
...
...
@@ -328,7 +328,7 @@ static LEX_STRING get_quoted_token(Lex_input_stream *lip,
yyUnget
();
// ptr points now after last token char
tmp
.
length
=
lip
->
yytoklen
=
length
;
tmp
.
str
=
(
char
*
)
lip
->
m_thd
->
alloc
(
tmp
.
length
+
1
);
from
=
lip
->
tok_start
+
skip
from
=
lip
->
tok_start
+
skip
;
to
=
tmp
.
str
;
end
=
to
+
length
;
for
(
;
to
!=
end
;
)
...
...
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