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
5f5a3cf1
Commit
5f5a3cf1
authored
Jul 18, 2008
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Plain Diff
merge of 38158 to 5.1-bugteam
parents
516312dd
88d66418
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
36 additions
and
9 deletions
+36
-9
client/mysql.cc
client/mysql.cc
+31
-0
mysql-test/r/client_xml.result
mysql-test/r/client_xml.result
+1
-0
mysql-test/r/mysql.result
mysql-test/r/mysql.result
+0
-2
mysql-test/t/client_xml.test
mysql-test/t/client_xml.test
+3
-0
mysql-test/t/mysql_delimiter.sql
mysql-test/t/mysql_delimiter.sql
+0
-6
mysys/default.c
mysys/default.c
+1
-1
No files found.
client/mysql.cc
View file @
5f5a3cf1
...
...
@@ -2101,6 +2101,37 @@ static bool add_line(String &buffer,char *line,char *in_string,
continue
;
}
}
else
if
(
!*
ml_comment
&&
!*
in_string
&&
(
end_of_line
-
pos
)
>=
10
&&
!
my_strnncoll
(
charset_info
,
(
uchar
*
)
pos
,
10
,
(
const
uchar
*
)
"delimiter "
,
10
))
{
// Flush previously accepted characters
if
(
out
!=
line
)
{
buffer
.
append
(
line
,
(
uint32
)
(
out
-
line
));
out
=
line
;
}
// Flush possible comments in the buffer
if
(
!
buffer
.
is_empty
())
{
if
(
com_go
(
&
buffer
,
0
)
>
0
)
// < 0 is not fatal
DBUG_RETURN
(
1
);
buffer
.
length
(
0
);
}
/*
Delimiter wants the get rest of the given line as argument to
allow one to change ';' to ';;' and back
*/
buffer
.
append
(
pos
);
if
(
com_delimiter
(
&
buffer
,
pos
)
>
0
)
DBUG_RETURN
(
1
);
buffer
.
length
(
0
);
break
;
}
else
if
(
!*
ml_comment
&&
!*
in_string
&&
is_prefix
(
pos
,
delimiter
))
{
// Found a statement. Continue parsing after the delimiter
...
...
mysql-test/r/client_xml.result
View file @
5f5a3cf1
set @old_concurrent_insert= @@global.concurrent_insert;
set @@global.concurrent_insert= 0;
drop table if exists t1;
create table t1 (
`a&b` int,
`a<b` int,
...
...
mysql-test/r/mysql.result
View file @
5f5a3cf1
...
...
@@ -38,8 +38,6 @@ t2
t3
Tables_in_test
t1
delimiter
1
_
Test delimiter : from command line
a
...
...
mysql-test/t/client_xml.test
View file @
5f5a3cf1
...
...
@@ -6,6 +6,9 @@
# the data is actually in the table).
set
@
old_concurrent_insert
=
@@
global
.
concurrent_insert
;
set
@@
global
.
concurrent_insert
=
0
;
--
disable_warnings
drop
table
if
exists
t1
;
--
enable_warnings
# Test of the xml output of the 'mysql' and 'mysqldump' clients -- makes
# sure that basic encoding issues are handled properly
...
...
mysql-test/t/mysql_delimiter.sql
View file @
5f5a3cf1
...
...
@@ -60,12 +60,6 @@ use test//
show
tables
//
delimiter
;
#
Reset
delimiter
#
#
Bug
#
33812
:
mysql
client
incorrectly
parsing
DELIMITER
#
select
a
as
delimiter
from
t1
delimiter
;
#
Reset
delimiter
#
#
Bug
#
36244
:
MySQL
CLI
doesn
't recognize standalone -- as comment
# before DELIMITER statement
...
...
mysys/default.c
View file @
5f5a3cf1
...
...
@@ -1026,7 +1026,7 @@ static const char *my_get_module_parent(char *buf, size_t size)
{
char
*
last
=
NULL
;
char
*
end
;
if
(
!
GetModuleFileName
(
NULL
,
buf
,
size
))
if
(
!
GetModuleFileName
(
NULL
,
buf
,
(
DWORD
)
size
))
return
NULL
;
end
=
strend
(
buf
);
...
...
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