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
f51c6acc
Commit
f51c6acc
authored
Aug 30, 2007
by
malff/marcsql@weblab.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge malff@bk-internal.mysql.com:/home/bk/mysql-5.0-runtime
into weblab.(none):/home/marcsql/TREE/mysql-5.0-28779-b
parents
6f72d990
33d10a06
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
17 deletions
+44
-17
client/mysql.cc
client/mysql.cc
+37
-17
mysql-test/r/mysql.result
mysql-test/r/mysql.result
+2
-0
mysql-test/t/mysql.test
mysql-test/t/mysql.test
+5
-0
No files found.
client/mysql.cc
View file @
f51c6acc
...
...
@@ -1245,6 +1245,7 @@ static bool add_line(String &buffer,char *line,char *in_string,
char
buff
[
80
],
*
pos
,
*
out
;
COMMANDS
*
com
;
bool
need_space
=
0
;
bool
ss_comment
=
0
;
DBUG_ENTER
(
"add_line"
);
if
(
!
line
[
0
]
&&
buffer
.
is_empty
())
...
...
@@ -1298,6 +1299,19 @@ static bool add_line(String &buffer,char *line,char *in_string,
if
((
*
com
->
func
)(
&
buffer
,
pos
-
1
)
>
0
)
DBUG_RETURN
(
1
);
// Quit
if
(
com
->
takes_params
)
{
if
(
ss_comment
)
{
/*
If a client-side macro appears inside a server-side comment,
discard all characters in the comment after the macro (that is,
until the end of the comment rather than the next delimiter)
*/
for
(
pos
++
;
*
pos
&&
(
*
pos
!=
'*'
||
*
(
pos
+
1
)
!=
'/'
);
pos
++
)
;
pos
--
;
}
else
{
for
(
pos
++
;
*
pos
&&
(
*
pos
!=
*
delimiter
||
...
...
@@ -1308,6 +1322,7 @@ static bool add_line(String &buffer,char *line,char *in_string,
else
pos
+=
delimiter_length
-
1
;
// Point at last delim char
}
}
out
=
line
;
}
else
...
...
@@ -1368,7 +1383,7 @@ static bool add_line(String &buffer,char *line,char *in_string,
out
=
line
;
}
}
else
if
(
*
ml_comment
&&
inchar
==
'*'
&&
*
(
pos
+
1
)
==
'/'
)
else
if
(
*
ml_comment
&&
!
ss_comment
&&
inchar
==
'*'
&&
*
(
pos
+
1
)
==
'/'
)
{
pos
++
;
*
ml_comment
=
0
;
...
...
@@ -1376,6 +1391,11 @@ static bool add_line(String &buffer,char *line,char *in_string,
}
else
{
// Add found char to buffer
if
(
!*
in_string
&&
inchar
==
'/'
&&
*
(
pos
+
1
)
==
'*'
&&
*
(
pos
+
2
)
==
'!'
)
ss_comment
=
1
;
else
if
(
!*
in_string
&&
ss_comment
&&
inchar
==
'*'
&&
*
(
pos
+
1
)
==
'/'
)
ss_comment
=
0
;
if
(
inchar
==
*
in_string
)
*
in_string
=
0
;
else
if
(
!*
ml_comment
&&
!*
in_string
&&
...
...
mysql-test/r/mysql.result
View file @
f51c6acc
...
...
@@ -176,4 +176,6 @@ ERROR at line 1: DELIMITER cannot contain a backslash character
ERROR at line 1: DELIMITER cannot contain a backslash character
1
1
1
1
End of 5.0 tests
mysql-test/t/mysql.test
View file @
f51c6acc
...
...
@@ -273,4 +273,9 @@ EOF
--
exec
$MYSQL
--
pager
=
"540bytelengthstringxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
-
e
"select 1"
>
/
dev
/
null
2
>&
1
--
exec
$MYSQL
--
character
-
sets
-
dir
=
"540bytelengthstringxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
-
e
"select 1"
2
>&
1
#
# bug #30164: Using client side macro inside server side comments generates broken queries
#
--
exec
$MYSQL
test
-
e
"/*! \C latin1 */ select 1;"
--
echo
End
of
5.0
tests
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